* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a4d7a;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #1a4d7a;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    max-width: 180px;
    text-align: right;
}

.hero-split {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a4d7a;
}

.hero-text p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a4d7a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #143d63;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-color: #d5e3ed;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-offset {
    padding: 100px 40px;
    background-color: #ffffff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.intro-left {
    flex: 0 0 45%;
    background-color: #e8f0f5;
    border-radius: 8px;
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a4d7a;
    line-height: 1.3;
}

.intro-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 90px 40px;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a4d7a;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 25px);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #d5e3ed;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a4d7a;
}

.service-info p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.service-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px;
    background-color: #1a4d7a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: #143d63;
}

.select-service.selected {
    background-color: #2ecc71;
}

.approach-section {
    padding: 90px 40px;
    background-color: #1a4d7a;
    color: #ffffff;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.approach-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 280px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-form-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a4d7a;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4d7a;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #1a4d7a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #143d63;
}

.disclaimer-section {
    background-color: #f0f4f7;
    padding: 50px 40px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a4d7a;
}

.disclaimer-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.thanks-message {
    text-align: center;
    padding: 100px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a4d7a;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-message .selected-service {
    font-size: 20px;
    font-weight: 600;
    color: #2ecc71;
    margin: 30px 0;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 35px;
    background-color: #1a4d7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.back-link:hover {
    background-color: #143d63;
}

.about-hero {
    background-color: #1a4d7a;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-section {
    margin-bottom: 70px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a4d7a;
}

.about-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-member-image {
    width: 100%;
    height: 280px;
    background-color: #d5e3ed;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a4d7a;
}

.team-member p {
    font-size: 15px;
    color: #666;
}

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a4d7a;
    text-align: center;
}

.contact-info-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a4d7a;
}

.contact-info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a4d7a;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .ad-disclosure {
        text-align: center;
        max-width: 100%;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .intro-container {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .approach-split {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}