:root {
    --primary-green: #2D7A4F;
    --deep-forest: #1A4D2E;
    --soft-sage: #7FB685;
    --warm-orange: #E67E22;
    --sky-blue: #3498DB;
    --sunny-yellow: #F39C12;
    --charcoal: #2C3E50;
    --light-gray: #ECF0F1;
    --white: #FFFFFF;
    --medium-gray: #95A5A6;
    --sidebar-width: 25%;
    --content-width: 75%;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

.container-fluid {
    padding: 0;
}

.row {
    margin: 0;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.lang-btn {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3);
}

.lang-btn:hover {
    background: var(--deep-forest);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 79, 0.4);
}

.sidebar-executive {
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--primary-green) 100%);
    color: var(--white);
    min-height: 100vh;
    position: sticky;
    top: 0;
    padding: 0;
}

.sidebar-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 180px;
    height: auto;
}

.sidebar-nav {
    flex: 1;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-nav .nav-link i {
    margin-right: 12px;
    font-size: 18px;
    width: 25px;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateX(5px);
}

.sidebar-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
}

.sidebar-contact h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

.sidebar-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.6;
}

.sidebar-contact i {
    margin-right: 8px;
    color: var(--soft-sage);
}

.sidebar-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.sidebar-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.sidebar-footer a:hover,
.sidebar-footer a.active {
    color: var(--white);
}

.main-content {
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.05) 0%, rgba(127, 182, 133, 0.05) 100%);
    padding: 100px 0 80px;
}

.hero-content {
    padding: 0 50px;
}

.hero-title {
    font-weight: 800;
    color: var(--deep-forest);
    margin-bottom: 25px;
    line-height: 1.2;
    font-size: 3.5rem;
}

.hero-subtitle {
    color: var(--charcoal);
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 8px;
    text-align: center;
}

.btn-hero {
    background: var(--primary-green);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(45, 122, 79, 0.3);
}

.btn-hero:hover {
    background: var(--deep-forest);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 122, 79, 0.4);
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.rounded-custom {
    border-radius: 20px;
}

.intro-section,
.tips-section,
.benefits-section,
.start-section,
.contact-section,
.faq-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--deep-forest);
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--soft-sage));
    margin: 0 auto 30px;
    border-radius: 2px;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-weight: 400;
}

.tips-section {
    background: var(--light-gray);
}

.tip-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tip-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--white);
}

.tip-icon.electricity {
    background: linear-gradient(135deg, var(--sunny-yellow), var(--warm-orange));
}

.tip-icon.water {
    background: linear-gradient(135deg, var(--sky-blue), #2980B9);
}

.tip-icon.gas {
    background: linear-gradient(135deg, var(--warm-orange), #D35400);
}

.tip-icon.solar {
    background: linear-gradient(135deg, #F39C12, #E74C3C);
}

.tip-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 20px;
    text-align: center;
}

.tip-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.tip-card p {
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.8;
}

.tip-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.tip-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: var(--charcoal);
    line-height: 1.6;
}

.tip-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 14px;
}

.advanced-tips {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.detection-card {
    text-align: center;
    padding: 30px;
}

.detection-icon {
    font-size: 50px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.detection-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 15px;
}

.detection-card p {
    color: var(--charcoal);
    line-height: 1.7;
}

.benefit-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(45, 122, 79, 0.1);
}

.benefit-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 20px;
}

.benefit-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin: 20px 0;
}

.benefit-item p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 15px;
}

.start-section {
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.05) 0%, rgba(127, 182, 133, 0.05) 100%);
}

.steps-container {
    margin-top: 50px;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--soft-sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 35px;
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 15px;
}

.step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
}

.contact-section {
    background: var(--light-gray);
}

.contact-intro {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.contact-info-box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-green);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    color: var(--deep-forest);
    font-weight: 600;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--charcoal);
    margin: 0;
    line-height: 1.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(45, 122, 79, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-green);
    cursor: pointer;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.contact-form .form-check-label {
    margin-left: 10px;
    cursor: pointer;
    font-size: 0.95rem;
}

.contact-form .form-check-label a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(45, 122, 79, 0.3);
}

.btn-submit:hover {
    background: var(--deep-forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 122, 79, 0.4);
}

.iti {
    width: 100%;
}

.iti__country-list {
    max-height: 200px;
    border-radius: 10px;
}

.faq-section {
    background: var(--white);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-header h3 {
    margin: 0;
}

.accordion-button {
    background: var(--white);
    color: var(--deep-forest);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px;
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.8;
}

.site-footer {
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.site-footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.thanks-section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    font-size: 100px;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.thanks-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.thanks-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 30px;
    text-align: center;
}

.step-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.step-box i {
    font-size: 50px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.step-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 10px;
}

.step-box p {
    color: var(--charcoal);
    font-size: 1rem;
    margin: 0;
}

.meanwhile-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(45, 122, 79, 0.05);
    border-radius: 15px;
}

.meanwhile-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 20px;
    text-align: center;
}

.meanwhile-section p {
    text-align: center;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-primary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.contact-reminder {
    margin-top: 40px;
    padding: 25px;
    background: rgba(230, 126, 34, 0.1);
    border-left: 4px solid var(--warm-orange);
    border-radius: 10px;
}

.contact-reminder p {
    margin: 0;
    color: var(--charcoal);
}

.legal-section {
    padding: 80px 0;
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-forest);
    margin-bottom: 10px;
}

.legal-update {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

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

.legal-content strong {
    color: var(--deep-forest);
    font-weight: 700;
}

.cookie-table {
    margin: 25px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--primary-green);
    color: var(--white);
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

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

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 10px;
}

.cookie-consent-text p {
    color: var(--charcoal);
    margin: 0;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.cookie-btn-accept:hover {
    background: var(--deep-forest);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cookie-btn-settings:hover {
    background: var(--primary-green);
    color: var(--white);
}

.cookie-btn-reject {
    background: var(--medium-gray);
    color: var(--white);
}

.cookie-btn-reject:hover {
    background: var(--charcoal);
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 20px;
}

.cookie-category {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    margin-bottom: 20px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--medium-gray);
    transition: 0.4s;
    border-radius: 30px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-green);
}

input:checked + .cookie-slider:before {
    transform: translateX(30px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    color: var(--charcoal);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-settings-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .sidebar-executive {
        position: relative;
        min-height: auto;
    }
    
    .sidebar-content {
        height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .step-icon-wrapper {
        margin: 0 auto 20px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .thanks-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn-hero,
    .btn-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}