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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #fff9e6;
    border-bottom: 1px solid #f4d03f;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #7d6608;
}

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #1a5490;
}

.hero-section {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 30px 60px;
}

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

.hero-section h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 21px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s, transform 0.2s;
}

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

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

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

.intro-section {
    padding: 90px 30px;
    background: #ffffff;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.visual-split-section {
    background: #f8fafc;
    padding: 80px 30px;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 22px;
}

.split-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 18px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    background: #e2e8f0;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.services-preview {
    padding: 90px 30px;
    background: #ffffff;
}

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

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

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

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

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 24px 24px 14px;
}

.service-card p {
    font-size: 16px;
    color: #475569;
    margin: 0 24px 18px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a5490;
    margin: 0 24px 18px;
}

.service-link {
    display: inline-block;
    margin: 0 24px 24px;
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.service-link:hover {
    color: #144170;
    text-decoration: underline;
}

.approach-section {
    padding: 90px 30px;
    background: #f0f9ff;
}

.approach-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 26px;
}

.approach-section p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 30px;
    background: #0f172a;
}

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

.cta-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.cta-box p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2563eb;
}

.main-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 30px 20px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #334155;
}

.footer-disclaimer p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #334155;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    color: #cbd5e1;
    font-size: 15px;
    flex: 1;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-btn.accept {
    background: #1a5490;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #2563eb;
}

.cookie-btn.reject {
    background: #475569;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #64748b;
}

.page-header {
    background: #f0f9ff;
    padding: 70px 30px 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #475569;
}

.service-detail {
    padding: 70px 30px;
    background: #ffffff;
}

.service-detail:nth-child(even) {
    background: #f8fafc;
}

.service-layout {
    max-width: 900px;
    margin: 0 auto;
}

.service-main h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
}

.service-image-full {
    width: 100%;
    height: 400px;
    background: #e2e8f0;
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-main p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-main h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 40px;
}

.service-list li {
    font-size: 17px;
    color: #475569;
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.service-pricing-box {
    background: #f0f9ff;
    border-left: 4px solid #1a5490;
    padding: 30px;
    margin: 40px 0;
    border-radius: 6px;
}

.service-pricing-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px 0;
}

.price-main {
    font-size: 32px;
    font-weight: 800;
    color: #1a5490;
    margin-bottom: 12px;
}

.service-pricing-box p {
    font-size: 15px;
    color: #475569;
    margin: 0;
}

.service-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
}

.service-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 28px 0;
}

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

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

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

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

.submit-btn {
    background: #1a5490;
    color: #ffffff;
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #144170;
}

.about-intro {
    padding: 70px 30px;
    background: #ffffff;
}

.about-intro img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
}

.about-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.about-intro p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 30px;
    background: #f8fafc;
}

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 36px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.team-section {
    padding: 70px 30px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.team-section p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-image {
    max-width: 1200px;
    margin: 40px auto 0;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-detail {
    padding: 80px 30px;
    background: #f8fafc;
}

.approach-detail h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: center;
}

.approach-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e0f2fe;
    position: absolute;
    top: 20px;
    right: 30px;
}

.step h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.step p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

.philosophy-section {
    padding: 70px 30px;
    background: #ffffff;
}

.philosophy-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.philosophy-section p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-section {
    padding: 70px 30px;
    background: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
}

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

.thanks-section {
    padding: 100px 30px;
    background: #f8fafc;
    min-height: 60vh;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
}

.thanks-info {
    background: #e0f2fe;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #0f172a;
}

.thanks-next {
    text-align: left;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next ul li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
    line-height: 1.6;
}

.thanks-next ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #144170;
}

.btn-secondary {
    display: inline-block;
    background: #f1f5f9;
    color: #334155;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.legal-page {
    padding: 60px 30px;
    background: #ffffff;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 30px 0 16px;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 24px 0 12px;
}

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

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

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

.legal-page a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #144170;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

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

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

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .values-grid {
        flex-direction: column;
    }

    .approach-steps {
        gap: 30px;
    }
}