* {
    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: 13px;
    color: #6c757d;
}

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 35px;
}

.hero-visual {
    flex: 1;
    background-color: #f1f3f5;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cta-primary:hover {
    background-color: #004494;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left h2,
.split-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.25;
}

.split-left p,
.split-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e9ecef;
}

.link-underline {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.link-underline:hover {
    border-bottom-color: #003d82;
}

.values-section {
    padding: 100px 40px;
}

.services-highlight {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    margin: 0 25px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #0056b3;
    margin: 20px 25px;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #0056b3;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: #e7f3ff;
    border-left: 4px solid #0056b3;
    padding: 18px 22px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #004494;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
}

.btn-submit {
    padding: 16px;
    background-color: #0056b3;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #adb5bd;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto;
    padding: 25px;
    background-color: #2c2c2c;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #adb5bd;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #343a40;
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    padding: 25px 40px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #0056b3;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.cookie-link {
    color: #0056b3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero {
    background-color: #0056b3;
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.services-detailed {
    padding: 80px 40px;
}

.service-detail-item {
    margin-bottom: 80px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: 700;
    font-size: 18px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #0056b3;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #0056b3;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #004494;
}

.cta-section {
    padding: 100px 40px;
    background-color: #0056b3;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro {
    padding: 80px 40px;
}

.philosophy-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.content-wrapper h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.principle-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0056b3;
    font-weight: 600;
}

.principle-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.experience-section {
    padding: 80px 40px;
}

.approach-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.approach-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.contact-section {
    padding: 80px 40px;
}

.contact-info {
    margin: 40px 0;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0056b3;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-note {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    margin-top: 30px;
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.legal-container a {
    color: #0056b3;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #dee2e6;
    padding: 12px;
    text-align: left;
    font-size: 15px;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #495057;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e7f3ff;
    border-left: 4px solid #0056b3;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.service-confirmation p {
    font-size: 16px;
    color: #004494;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #0056b3;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #004494;
}

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

@media (max-width: 768px) {
    .hero-split,
    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .service-cards {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}