* {
    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: #2d3748;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4299e1;
    color: #ffffff;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 1;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #805ad5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-main a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #805ad5;
}

.ad-label {
    background-color: #f7fafc;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #718096;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

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

.hero-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #805ad5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #805ad5;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #805ad5;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-secondary:hover {
    background-color: #805ad5;
    color: #ffffff;
    transform: translateY(-2px);
}

.value-split {
    display: flex;
    align-items: center;
}

.value-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.value-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.value-content {
    flex: 1;
    padding: 4rem 5%;
}

.value-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.value-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.services-intro {
    padding: 4rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.15rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    padding: 0 5% 4rem;
}

.service-card {
    display: flex;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

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

.service-price {
    font-size: 1.5rem;
    color: #805ad5;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.875rem 1.75rem;
    background-color: #805ad5;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-select:hover {
    background-color: #6b46c1;
    transform: translateY(-2px);
}

.approach-split {
    display: flex;
    background-color: #f7fafc;
}

.approach-content {
    flex: 1;
    padding: 4rem 5%;
}

.approach-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 2.5rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step h4 {
    font-size: 1.35rem;
    color: #805ad5;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 1.05rem;
    color: #4a5568;
}

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

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

.cta-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.cta-box {
    background-color: #f7fafc;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

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

.form-section {
    padding: 5rem 5%;
    background-color: #f7fafc;
}

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

.form-container h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.form-container > p {
    font-size: 1.05rem;
    color: #718096;
    margin-bottom: 2rem;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #805ad5;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #6b46c1;
}

.footer-main {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h3 {
    font-size: 1.35rem;
    color: #805ad5;
    margin-bottom: 1rem;
}

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

.footer-column p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
}

.page-hero {
    padding: 5rem 5% 3rem;
    background-color: #f7fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #718096;
}

.about-split {
    display: flex;
    padding: 4rem 0;
}

.about-content {
    flex: 1;
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.about-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.values-section {
    padding: 4rem 5%;
    background-color: #f7fafc;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

.value-item h3 {
    font-size: 1.5rem;
    color: #805ad5;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

.team-split {
    display: flex;
    padding: 4rem 0;
}

.team-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.team-content {
    flex: 1;
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-visual {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

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

.service-detail-content ul {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.service-detail-content li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.05rem;
    color: #718096;
    font-weight: 500;
}

.price-value {
    font-size: 1.75rem;
    color: #805ad5;
    font-weight: 700;
}

.contact-split {
    display: flex;
    padding: 3rem 5%;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.35rem;
    color: #805ad5;
    margin-bottom: 0.75rem;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.info-note {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.info-note p {
    font-size: 0.95rem;
    color: #718096;
}

.contact-visual {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.thanks-section {
    padding: 5rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.thanks-content > p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.thanks-info p {
    font-size: 1.05rem;
    color: #2d3748;
}

.thanks-next {
    text-align: left;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 2.5rem;
}

.thanks-next h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

.thanks-next ol {
    padding-left: 1.5rem;
}

.thanks-next li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

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

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

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.35rem;
    color: #4a5568;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-page a {
    color: #805ad5;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .value-split,
    .approach-split,
    .about-split,
    .team-split,
    .service-card,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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