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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #27ae60;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

.hero-split {
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-text p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.btn-primary {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39,174,96,0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #27ae60;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #27ae60;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-large {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(39,174,96,0.3);
}

.split-section {
    padding: 5rem 0;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-image-left,
.split-image-right {
    flex: 1;
}

.split-image-left img,
.split-image-right img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.split-content-left,
.split-content-right {
    flex: 1;
}

.split-content-left h2,
.split-content-right h2,
.split-content-left h3,
.split-content-right h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.split-content-left p,
.split-content-right p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 1.25rem;
}

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

.services-intro {
    padding: 4rem 0;
    text-align: center;
    background: #f8f9fa;
}

.services-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-cards {
    padding: 5rem 0;
}

.card-grid {
    display: flex;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.benefit-card p {
    color: #5a6c7d;
    font-size: 1.05rem;
}

.services-pricing {
    margin-top: 2rem;
}

.price-item {
    background: #f8f9fa;
    padding: 1.75rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    border-left: 4px solid #27ae60;
}

.price-item h4 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.price-item p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.75rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 0.75rem;
}

.testimonials-section {
    padding: 5rem 0;
    background: #1a252f;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #27ae60;
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

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

.cta-section .btn-large {
    background: #ffffff;
    color: #27ae60;
}

.cta-section .btn-large:hover {
    background: #f8f9fa;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-wrapper > p {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.footer {
    background: #1a252f;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.footer-column p {
    color: #a8b2c1;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    color: #a8b2c1;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #a8b2c1;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    display: block;
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(39,174,96,0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39,174,96,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

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

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

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

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

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

.page-header {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

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

.team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.team-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #5a6c7d;
}

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

.team-member {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-detail {
    padding: 4rem 0;
}

.services-detail.gray-bg {
    background: #f8f9fa;
}

.service-block {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #5a6c7d;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.contact-info > p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
}

.contact-detail p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-detail a {
    color: #27ae60;
}

.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.map-section > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.map-placeholder {
    background: #e0e6ed;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #5a6c7d;
}

.thanks-section {
    padding: 5rem 0;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #27ae60;
}

.thanks-next h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    color: #1a252f;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.step {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.step h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.step p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-page {
    padding: 4rem 0;
}

.legal-date {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #27ae60;
}

.legal-section p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #27ae60;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-content,
    .split-section,
    .service-block,
    .contact-grid {
        flex-direction: column;
    }

    .split-section.reverse,
    .service-block.reverse {
        flex-direction: column;
    }

    .hero-text h1,
    .page-header h1 {
        font-size: 2.25rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .card-grid,
    .testimonials-grid,
    .team-grid,
    .steps-grid {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.75rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}