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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #1a73e8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #3498db;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

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

.hero-content {
    flex: 1;
    padding: 4rem;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    padding: 2rem;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1a73e8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

.problem-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.text-block p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.visual-block {
    flex: 1;
}

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

.insight-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 0;
}

.split-visual {
    flex: 1;
    padding: 2rem;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.split-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.testimonial-section {
    background-color: #1a202c;
    color: #ffffff;
    padding: 5rem 2rem;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    padding: 2rem;
}

.testimonial p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    display: block;
    color: #a0aec0;
    font-size: 0.95rem;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-col p {
    color: #a0aec0;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1.5rem;
    text-align: center;
    color: #a0aec0;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-split {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.story-section {
    padding: 5rem 2rem;
}

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

.story-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.story-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.cta-about {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.service-description {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-info p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #2d3748;
    font-size: 1.05rem;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.services-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
    font-weight: 600;
}

.contact-block p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-block a {
    color: #1a73e8;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.update-date {
    color: #718096;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.thanks-content {
    max-width: 900px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}

.thanks-message {
    background-color: #f8f9fa;
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
}

.thanks-message h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #27ae60;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.selected-service {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.thanks-message h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    text-align: left;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a73e8;
    font-weight: 700;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

    .hero-content {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

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

    .split-text {
        padding: 2rem;
    }

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

    .testimonial-wrapper {
        flex-direction: column;
    }

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

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

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

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

    .next-steps {
        flex-direction: column;
    }
}
