* {
    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;
}

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

.main-header {
    background-color: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

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

.main-navigation a {
    color: #e0e6ed;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #4a90e2;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f5f7fa;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.hero-content-left h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a2332;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.hero-image-right {
    flex: 1;
    background-color: #e8ecf0;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.philosophy-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.narrow-content-center h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a2332;
    text-align: center;
}

.narrow-content-center p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a5568;
    text-align: left;
}

.services-preview-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    background-color: #f8fafc;
}

.services-intro-left {
    flex: 0 0 380px;
}

.services-intro-left h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a2332;
}

.services-intro-left p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a5568;
}

.link-secondary {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #2563eb;
    transition: opacity 0.3s ease;
}

.link-secondary:hover {
    opacity: 0.7;
}

.services-cards-right {
    flex: 1;
    display: flex;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex: 1;
}

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

.service-card h4 {
    font-size: 20px;
    margin: 20px 20px 12px 20px;
    color: #1a2332;
}

.service-card p {
    margin: 0 20px 15px 20px;
    font-size: 15px;
    color: #6b7280;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #2563eb;
    margin: 15px 20px 25px 20px;
}

.approach-section-asymmetric {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.approach-text-block {
    flex: 1;
}

.approach-text-block h3 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a2332;
}

.approach-step {
    margin-bottom: 40px;
}

.approach-step h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a2332;
}

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

.approach-visual-block {
    flex: 0 0 480px;
    background-color: #f1f5f9;
}

.approach-visual-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-inline {
    padding: 80px 60px;
    background-color: #1e293b;
}

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

.testimonial-content blockquote {
    border-left: none;
    padding: 0;
}

.testimonial-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    color: #94a3b8;
    font-style: normal;
}

.form-section-centered {
    padding: 100px 60px;
    background-color: #f8fafc;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a2332;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 35px;
    color: #6b7280;
}

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

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

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

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

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fef3c7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

.footer-column {
    flex: 1;
}

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

.footer-column h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    color: #94a3b8;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-banner-content p {
    color: #e0e6ed;
    font-size: 14px;
    flex: 1;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

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

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

.cookie-btn:hover {
    opacity: 0.85;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    flex: 1 1 calc(50% - 15px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.service-item .service-price {
    font-size: 26px;
    font-weight: 600;
    color: #2563eb;
    margin-top: 20px;
}

.about-hero {
    padding: 100px 60px;
    background-color: #f8fafc;
}

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

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

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

.about-split {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    background-color: #ffffff;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #1a2332;
}

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

.about-image {
    flex: 0 0 480px;
    background-color: #f1f5f9;
}

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

.contact-page {
    padding: 80px 60px;
    background-color: #f8fafc;
}

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

.contact-info {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a2332;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f8fafc;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .services-preview-split,
    .approach-container,
    .about-split,
    .contact-container {
        flex-direction: column;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
    }

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

    .services-cards-right {
        flex-direction: column;
    }

    .approach-visual-block,
    .about-image {
        flex: 1;
    }

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