* {
    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: #333;
    background: #fff;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    align-self: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.intro-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.value-proposition {
    padding: 80px 40px;
    background: #fff;
}

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

.value-text {
    flex: 1.2;
}

.value-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.value-text p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #555;
}

.benefit-list {
    list-style: none;
    margin-top: 32px;
}

.benefit-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #444;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.value-visual {
    flex: 1;
}

.value-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.services-grid {
    padding: 80px 40px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.services-grid h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    background-color: #e9ecef;
}

.service-card h3 {
    padding: 20px 24px 12px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px;
    font-size: 16px;
    color: #666;
    flex: 1;
    margin-bottom: 16px;
}

.service-card .price {
    padding: 0 24px 16px;
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #5568d3;
}

.contact-form-section {
    padding: 80px 40px;
    background: #2c3e50;
    color: #fff;
}

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

.form-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255,255,255,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-group select option {
    background: #2c3e50;
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.testimonials-split {
    display: flex;
    min-height: 500px;
}

.testimonial-content {
    flex: 1;
    padding: 60px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonial-item {
    margin-bottom: 36px;
}

.testimonial-item p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.testimonial-item cite {
    font-size: 16px;
    color: #777;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.main-footer {
    background: #1a252f;
    color: #fff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    color: #adb5bd;
    font-size: 15px;
}

.footer-column a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: #6c757d;
    font-size: 14px;
}

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

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

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

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

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cookie-accept {
    background: #667eea;
    color: #fff;
}

.cookie-accept:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.cookie-reject {
    background: #e9ecef;
    color: #555;
}

.cookie-reject:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

.page-header {
    padding: 80px 40px 60px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story-split {
    display: flex;
    min-height: 500px;
}

.story-content {
    flex: 1.3;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.approach-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.values-split {
    display: flex;
    min-height: 500px;
}

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

.values-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.values-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.value-item {
    margin-bottom: 28px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.team-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.expertise-areas {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.expertise-item {
    padding: 16px 28px;
    background: #fff;
    border: 2px solid #667eea;
    border-radius: 50px;
    color: #667eea;
    font-weight: 600;
    font-size: 16px;
}

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

.service-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 60px;
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.service-detail-content {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.service-detail-content ul {
    margin: 20px 0 32px 20px;
}

.service-detail-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.price-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
}

.price-label {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-amount {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.cta-service {
    display: inline-block;
    padding: 16px 40px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cta-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.contact-info-section {
    padding: 60px 40px;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

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

.contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 400px;
}

.contact-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #fff;
}

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.thanks-section {
    padding: 120px 40px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 28px;
    color: #2c3e50;
}

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

.service-confirmation {
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-confirmation p {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #667eea;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #667eea;
    color: #fff;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #667eea;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
}

.legal-page li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.legal-page a {
    color: #667eea;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .testimonials-split,
    .about-story-split,
    .values-split,
    .service-detail-split,
    .contact-wrapper,
    .value-wrapper {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .testimonial-content,
    .story-content,
    .values-content,
    .service-detail-content,
    .contact-details {
        padding: 40px 24px;
    }

    .hero-image,
    .intro-image,
    .testimonial-image,
    .story-image,
    .values-image,
    .service-detail-image,
    .contact-image {
        min-height: 300px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-content h1,
    .page-header h1,
    .thanks-content h1 {
        font-size: 36px;
    }

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

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

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