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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    color: #555555;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: #f5f7f9;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

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

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

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
}

.benefits-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

.benefits-image {
    flex: 1;
    background-color: #f5f7f9;
    border-radius: 12px;
    overflow: hidden;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefits-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-content h3 {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefits-content p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

.benefits-content a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 14px;
}

.link-arrow::after {
    content: '→';
    font-size: 20px;
}

.insight-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.insight-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insight-text h3 {
    font-size: 32px;
    font-weight: 700;
}

.insight-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #ecf0f1;
}

.insight-text a {
    color: #27ae60;
}

.insight-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 19px;
    color: #555555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h4 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 16px;
}

.btn-select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h3 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #555555;
}

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f7f9;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-content h3 {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-block {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.testimonial-block p {
    font-size: 17px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    background-color: #f5f7f9;
    border-radius: 12px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 50px 40px;
    border-top: 3px solid #ffa726;
}

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

.disclaimer-content h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #e65100;
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 15px;
    color: #5d4037;
    line-height: 1.7;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-references h5 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-references p {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 8px;
}

.footer-references a {
    color: #27ae60;
    text-decoration: none;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #f5f7f9;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-item {
    flex: 1 1 calc(50% - 18px);
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.team-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-intro h3 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    color: #555555;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-content p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    background-color: #f5f7f9;
    border-radius: 12px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.philosophy-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.philosophy-text h3 {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.philosophy-text p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail-item {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

.service-detail-content a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 10px;
}

.service-detail-image {
    flex: 1;
    background-color: #f5f7f9;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-visual {
    flex: 1;
    background-color: #f5f7f9;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

.info-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.thanks-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #27ae60;
    font-weight: 600;
}

.thanks-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thanks-details p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.btn-primary {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: #27ae60;
    text-decoration: none;
    border: 2px solid #27ae60;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.thanks-image {
    flex: 1;
    background-color: #f5f7f9;
    border-radius: 12px;
    overflow: hidden;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.legal-content {
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-update {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #27ae60;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    font-size: 15px;
}

.cookie-table thead {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-table th,
.cookie-table td {
    padding: 14px 18px;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookie-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 1024px) {
    .hero-split,
    .benefits-split,
    .insight-wrapper,
    .testimonials-split,
    .about-split,
    .philosophy-split,
    .service-detail-item,
    .contact-split,
    .thanks-section {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .services-grid {
        justify-content: center;
    }

    .service-card {
        flex: 1 1 calc(50% - 18px);
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}