* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--bg-white);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.insights-split {
    display: flex;
    background-color: var(--bg-white);
}

.insights-visual {
    flex: 1;
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

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

.insights-content {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insights-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.insights-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.models-showcase {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

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

.section-header-centered h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-header-centered p {
    font-size: 19px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 27px);
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 25px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 25px 20px;
}

.select-service {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    margin: 0 25px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1a252f;
}

.expertise-split {
    display: flex;
    background-color: var(--bg-white);
}

.expertise-content {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.expertise-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

.point h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.point p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-visual {
    flex: 1;
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.form-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    flex: 1;
    padding: 60px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

.form-wrapper {
    flex: 1;
    padding: 60px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.service-display {
    padding: 14px 16px;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    color: var(--text-light);
}

.service-display.selected {
    background-color: #e3f2fd;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-btn:hover:not(:disabled) {
    background-color: #2980b9;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: white;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: var(--bg-white);
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.page-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
}

.page-hero-visual {
    flex: 1;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

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

.about-content-split {
    display: flex;
    background-color: var(--bg-white);
    padding: 100px 40px;
}

.about-text {
    flex: 1;
    padding-right: 60px;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

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

.values-split {
    display: flex;
    background-color: var(--bg-light);
    padding: 100px 40px;
}

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

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

.values-content {
    flex: 1;
    padding-left: 60px;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.value-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-section {
    background-color: var(--bg-white);
    padding: 100px 40px;
}

.approach-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-step {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.approach-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-detailed {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.service-detail-split {
    display: flex;
    padding: 80px 40px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

.service-detail-content {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-benefits {
    list-style: none;
    margin-bottom: 35px;
}

.service-benefits li {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.service-pricing {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-label {
    font-size: 18px;
    color: var(--text-light);
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

.select-service-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-section-centered {
    background-color: var(--secondary-color);
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.cta-section-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section-centered .cta-primary {
    background-color: white;
    color: var(--secondary-color);
}

.cta-section-centered .cta-primary:hover {
    background-color: var(--bg-light);
}

.contact-info-split {
    display: flex;
    padding: 80px 40px;
    background-color: var(--bg-white);
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 60px 40px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 6px;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.thanks-container {
    max-width: 800px;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.selected-service-display {
    font-size: 18px;
    color: var(--text-dark);
}

.selected-service-display strong {
    color: var(--primary-color);
}

.price-display {
    color: var(--secondary-color);
    font-weight: 700;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.legal-page {
    background-color: var(--bg-white);
    padding: 60px 40px 100px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0 20px 30px;
}

.legal-container ul li {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 16px;
}

.cookies-table tbody tr:hover {
    background-color: var(--bg-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .insights-split,
    .expertise-split,
    .page-hero-split,
    .about-content-split,
    .values-split,
    .service-detail-split,
    .contact-info-split,
    .form-container-split {
        flex-direction: column;
    }

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

    .hero-content,
    .insights-content,
    .expertise-content,
    .page-hero-content,
    .about-text,
    .values-content,
    .service-detail-content,
    .contact-details,
    .form-intro,
    .form-wrapper {
        padding: 60px 40px;
    }

    .hero-visual,
    .insights-visual,
    .expertise-visual,
    .page-hero-visual,
    .about-visual,
    .values-visual,
    .service-detail-visual,
    .contact-map {
        min-height: 400px;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .section-header-centered h2 {
        font-size: 34px;
    }

    .service-card {
        width: 100%;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        padding: 0 20px;
    }

    .thanks-container {
        padding: 40px 30px;
    }

    .legal-container h1 {
        font-size: 36px;
    }

    .legal-container h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 22px;
    }

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

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }
}