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

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

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

.main-nav {
    background: #1a2332;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #4a90e2;
}

.hero-magazine {
    background: #f4f6f8;
    padding: 80px 40px;
}

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

.hero-left {
    flex: 1;
}

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

.lead-text {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 35px;
}

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

.cta-primary:hover {
    background: #1d4ed8;
}

.hero-right {
    flex: 1;
    background: #cbd5e0;
}

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

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

.magazine-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.column-wide {
    flex: 2.5;
}

.column-narrow {
    flex: 1;
}

.column-wide h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 28px;
    line-height: 1.3;
}

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

.sidebar-info {
    background: #f7fafc;
    padding: 35px;
    border-left: 4px solid #2563eb;
}

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

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

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

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

.section-header-center h2 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 18px;
}

.subtitle {
    font-size: 19px;
    color: #6b7280;
}

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

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

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

.service-image {
    background: #cbd5e0;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 14px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 18px;
}

.select-service-btn {
    width: 100%;
    background: #10b981;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #059669;
}

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

.asymmetric-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.approach-text {
    flex: 1.3;
}

.approach-text h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.approach-visual {
    flex: 1;
    background: #cbd5e0;
}

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

.form-section {
    padding: 90px 40px;
    background: #f4f6f8;
}

.form-container-magazine {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-intro h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 15px;
}

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

.selected-service-display {
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 30px;
}

.selected-service-display p {
    font-size: 15px;
    color: #065f46;
    margin-bottom: 6px;
}

.selected-service-display span {
    font-weight: 600;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1d4ed8;
}

.site-footer {
    background: #1a2332;
    color: #e8eaed;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background: #2d3748;
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    padding: 25px 40px;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #10b981;
    color: #ffffff;
}

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

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

.cookie-btn.reject:hover {
    background: #4b5563;
}

@media (max-width: 1024px) {
    .hero-content-split,
    .magazine-columns,
    .asymmetric-layout {
        flex-direction: column;
    }

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

    .service-card-mag {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.page-header {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 80px 40px;
    text-align: center;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.about-story {
    padding: 90px 40px;
    background: #ffffff;
}

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

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 25px;
}

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

.story-image {
    flex: 1;
    background: #cbd5e0;
}

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

.values-section {
    padding: 90px 40px;
    background: #f9fafb;
}

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

.values-container h2 {
    font-size: 42px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 15px;
}

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

.expertise-section {
    padding: 90px 40px;
    background: #ffffff;
}

.expertise-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.expertise-visual {
    flex: 1;
    background: #cbd5e0;
}

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

.expertise-content {
    flex: 1.3;
}

.expertise-content h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 25px;
}

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

.expertise-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}

.approach-philosophy {
    padding: 90px 40px;
    background: #f4f6f8;
}

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

.philosophy-content h2 {
    font-size: 40px;
    color: #1a2332;
    margin-bottom: 30px;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    text-align: left;
}

.services-detailed {
    padding: 70px 40px;
    background: #ffffff;
}

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

.service-detail-card {
    margin-bottom: 50px;
    background: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.service-detail-header {
    display: flex;
    gap: 0;
}

.service-icon {
    flex: 1;
    background: #cbd5e0;
}

.service-icon img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-title-price {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a2332;
}

.service-title-price h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 38px;
    font-weight: 700;
    color: #10b981;
}

.service-description {
    padding: 40px;
}

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

.service-description h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-description ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-description ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

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

.cta-section {
    padding: 80px 40px;
    background: #2563eb;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #e0e7ff;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 16px 50px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

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

.contact-page {
    padding: 80px 40px;
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 25px;
}

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

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

.info-block h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
}

.contact-map {
    flex: 1;
    background: #cbd5e0;
    min-height: 400px;
    border-radius: 8px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-page {
    padding: 120px 40px;
    background: #f9fafb;
    text-align: center;
    min-height: 70vh;
}

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

.thanks-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a2332;
    margin-bottom: 20px;
}

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

.submission-details {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.submission-details h3 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 20px;
}

.detail-item {
    margin-bottom: 15px;
    font-size: 16px;
    color: #4a5568;
}

.detail-item strong {
    color: #1a2332;
}

.back-link {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-link:hover {
    background: #1d4ed8;
}

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

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

.legal-content h1 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a2332;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-content strong {
    color: #1a2332;
}

.last-updated {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .content-wrapper,
    .expertise-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .expertise-stats {
        flex-direction: column;
        gap: 25px;
    }

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

    .value-item {
        flex: 1 1 100%;
    }
}

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

    .section-header-center h2 {
        font-size: 32px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .form-container-magazine {
        padding: 30px 20px;
    }

    .header-content h1 {
        font-size: 38px;
    }

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

    .service-title-price h2 {
        font-size: 26px;
    }

    .price-tag {
        font-size: 32px;
    }
}