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

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

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c5282;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5282;
}

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f7fafc;
    padding: 80px 20px;
    gap: 40px;
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.cta-button {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1a365d;
    cursor: pointer;
}

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
}

.intro-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.visual-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-overview {
    padding: 100px 20px;
    background-color: #edf2f7;
}

.services-overview h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a365d;
    padding: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    padding: 0 24px 16px;
    flex-grow: 1;
}

.price {
    background-color: #2c5282;
    color: #ffffff;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.benefits-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 40px;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    border-left: 4px solid #2c5282;
    padding-left: 24px;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 17px;
    color: #4a5568;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.testimonials-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    width: calc(33.333% - 20px);
    min-width: 300px;
}

.testimonial p {
    font-size: 17px;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2c5282;
    font-style: normal;
}

.form-section {
    padding: 100px 20px;
    background-color: #1a365d;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.form-section p {
    font-size: 18px;
    color: #cbd5e0;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    background-color: #ffffff;
    color: #1a365d;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #f7fafc;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #edf2f7;
}

.disclaimer-text {
    font-size: 14px;
    color: #718096;
    text-align: center;
    line-height: 1.7;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 8px;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #e2e8f0;
}

.cookie-content a {
    color: #63b3ed;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #2c5282;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1a365d;
}

.cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #2d3748;
}

.page-header {
    background-color: #2c5282;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.header-subtitle {
    font-size: 20px;
    color: #cbd5e0;
}

.about-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.values-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 50px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.experience-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.experience-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
}

.experience-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
}

.experience-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.experience-list li {
    font-size: 17px;
    color: #4a5568;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.experience-list li:before {
    content: "✓ ";
    color: #2c5282;
    font-weight: 700;
    margin-right: 8px;
}

.team-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    text-align: center;
}

.team-image-wrapper {
    margin-top: 40px;
}

.team-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.certifications-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.certifications-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
}

.certifications-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.cert-list {
    list-style: none;
    padding-left: 0;
}

.cert-list li {
    font-size: 17px;
    color: #4a5568;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.cert-list li:before {
    content: "• ";
    color: #2c5282;
    font-weight: 700;
    margin-right: 8px;
}

.cta-section {
    padding: 80px 20px;
    background-color: #edf2f7;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.services-detail {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-price-box {
    background-color: #f7fafc;
    border-left: 4px solid #2c5282;
    padding: 24px;
    margin-top: 24px;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #2c5282;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.pricing-note-section {
    padding: 80px 20px;
    background-color: #f7fafc;
    text-align: center;
}

.pricing-note-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
}

.pricing-note-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-item .note {
    font-size: 15px;
    color: #718096;
    font-style: italic;
    margin-top: 8px;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.info-section {
    padding: 60px 20px;
    background-color: #f7fafc;
}

.info-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
}

.info-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.info-section a {
    color: #2c5282;
    text-decoration: underline;
}

.office-image-section {
    background-color: #ffffff;
}

.full-width-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f7fafc;
}

.thanks-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 40px;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.selected-service {
    background-color: #edf2f7;
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #2c5282;
    font-weight: 600;
}

.thanks-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
}

.thanks-content a {
    color: #2c5282;
    text-decoration: underline;
}

.thanks-image {
    flex: 1;
    min-width: 300px;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 38px;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 12px;
}

.updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c5282;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page a {
    color: #2c5282;
    text-decoration: underline;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table th,
.cookies-table th {
    background-color: #edf2f7;
    color: #2d3748;
    font-weight: 700;
    padding: 12px;
    text-align: left;
    border: 1px solid #cbd5e0;
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 15px;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .service-card {
        width: 100%;
    }

    .testimonial {
        width: 100%;
    }

    .about-flex,
    .service-detail-item {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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