/* 
=================================================
GENERAL STYLES
=================================================
*/

/* Base Styles */
html, body {
    font-family: 'Source Sans 3', sans-serif;
    color: #2C3E50;
    scroll-behavior: smooth;
    background-color: #F5F8FA;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1B4F72;
    line-height: 1.3;
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.iti {
  width: 100%;
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2E86C1, #F39C12);
    border-radius: 3px;
}

.section-subtitle {
    color: #566573;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Buttons */
.button {
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.button.is-primary {
    background-color: #2E86C1;
}

.button.is-primary:hover {
    background-color: #1B4F72;
}

.button.is-link {
    background-color: #F39C12;
}

.button.is-link:hover {
    background-color: #D68910;
}

.button.is-light {
    background-color: #EBF5FB;
    color: #2E86C1;
}

.button.is-light:hover {
    background-color: #D6EAF8;
    color: #1B4F72;
}

.button.is-outlined {
    border-width: 2px;
}

/* Sections */
.section {
    padding: 5rem 1.5rem;
}

/* 
=================================================
COOKIE CONSENT STYLES
=================================================
*/

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(43, 62, 80, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    max-height: 90vh;
    overflow-y: auto;
}

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

.cookie-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-options {
    margin: 1.5rem 0;
    display: grid;
    gap: 1rem;
}

.cookie-option {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 4px;
}

.cookie-option label {
    font-weight: 600;
    margin-left: 0.5rem;
    color: #fff;
}

.cookie-description {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cookie-more-info {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-more-info a {
    color: #F39C12;
    text-decoration: underline;
}

.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2E86C1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
    display: none;
}

.cookie-settings-button:hover {
    background-color: #1B4F72;
    transform: scale(1.05);
}

/* 
=================================================
HEADER STYLES
=================================================
*/

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    background-color: transparent;
    min-height: 80px;
}

.navbar-item img {
    max-height: 50px;
}

.navbar-item {
    font-weight: 600;
    color: #2C3E50;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-item:hover {
    color: #2E86C1;
    background-color: transparent !important;
}

.navbar-item.is-active {
    color: #2E86C1;
    border-bottom: 3px solid #2E86C1;
}

.navbar-burger {
    height: 4.25rem;
}

/* 
=================================================
HERO SECTION STYLES
=================================================
*/

.custom-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: 0;
}

.hero-body {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content .title {
    color: #1B4F72;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    color: #566573;
    margin-bottom: 2rem;
}

/* 
=================================================
FEATURES SECTION STYLES
=================================================
*/

.features-section {
    background-color: #fff;
}

.feature-card {
    background-color: #F5F8FA;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

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

.feature-icon {
    background: linear-gradient(135deg, #2E86C1, #1B4F72);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: white;
    font-size: 1.75rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1B4F72;
}

/* 
=================================================
BENEFITS SECTION STYLES
=================================================
*/

.benefits-section {
    background-color: #EBF5FB;
}

.benefits-content {
    padding: 2rem;
}

.benefits-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-icon {
    background-color: #F39C12;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.25rem;
}

.benefit-text h3 {
    margin-bottom: 0.5rem;
}

/* 
=================================================
TECH SECTION STYLES
=================================================
*/

.tech-section {
    background-color: #fff;
}

.tech-card {
    background-color: #F5F8FA;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tech-image {
    overflow: hidden;
}

.tech-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.tech-content {
    padding: 2rem;
    flex-grow: 1;
}

.tech-content h3 {
    margin-bottom: 1rem;
}

/* 
=================================================
FUTURE SECTION STYLES
=================================================
*/

.future-section {
    background-color: #EBF5FB;
}

.future-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.future-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.future-icon {
    background: linear-gradient(135deg, #2E86C1, #1B4F72);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.future-icon i {
    color: white;
    font-size: 1.25rem;
}

.future-text h3 {
    margin-bottom: 0.5rem;
}

/* 
=================================================
STATS SECTION STYLES
=================================================
*/

.stats-section {
    background: linear-gradient(135deg, #1B4F72, #2E86C1);
    color: white;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-title::after {
    background: linear-gradient(90deg, #F39C12, #F5F8FA);
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #F39C12;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
}

/* 
=================================================
INFO SECTION STYLES
=================================================
*/

.info-section {
    background-color: #F5F8FA;
}

.info-content {
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* 
=================================================
CTA SECTION STYLES
=================================================
*/

.cta-section {
    background-color: #EBF5FB;
}

.cta-container {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cta-content {
    padding: 2.5rem;
}

.cta-content .title {
    margin-bottom: 1rem;
}

.cta-content .subtitle {
    margin-bottom: 2rem;
}

/* 
=================================================
FOOTER STYLES
=================================================
*/

.footer {
    background-color: #1B4F72;
    color: #EBF5FB;
    padding: 4rem 1.5rem 2rem;
}

.footer-brand img {
    max-height: 50px;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #D6EAF8;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F39C12;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: #F39C12;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #D6EAF8;
}

/* 
=================================================
STRATEGIES PAGE STYLES
=================================================
*/

.intro-section {
    background-color: #fff;
}

.strategies-section {
    background-color: #F5F8FA;
}

.strategy-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.strategy-icon {
    background: linear-gradient(135deg, #2E86C1, #1B4F72);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.strategy-icon i {
    color: white;
    font-size: 1.5rem;
}

.strategy-content h3 {
    margin-bottom: 1rem;
}

.strategy-tips {
    background-color: #EBF5FB;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 6px;
}

.strategy-tips h4 {
    margin-bottom: 1rem;
    color: #1B4F72;
}

.strategy-tips ul {
    padding-left: 1.5rem;
}

.strategy-tips li {
    margin-bottom: 0.5rem;
}

.advanced-section {
    background-color: #fff;
}

.advanced-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.advanced-technique {
    margin-bottom: 2rem;
}

.advanced-technique h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.advanced-technique h3 i {
    color: #F39C12;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.applications-section {
    background-color: #EBF5FB;
}

.application-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.application-image img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.application-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.tips-section {
    background-color: #fff;
}

.tips-container {
    background-color: #F5F8FA;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.tip-icon {
    background-color: #F39C12;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.tip-icon i {
    color: white;
    font-size: 1.25rem;
}

.tip-text h3 {
    margin-bottom: 0.5rem;
}

/* 
=================================================
INITIATIVE PAGE STYLES
=================================================
*/

.about-section {
    background-color: #fff;
}

.mission-section {
    background-color: #F5F8FA;
}

.mission-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-block {
    margin-bottom: 2.5rem;
}

.mission-block h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.mission-block h3 i {
    color: #F39C12;
    margin-right: 0.75rem;
}

.values-list {
    padding-left: 1.5rem;
}

.values-list li {
    margin-bottom: 0.75rem;
}

.objectives-section {
    background-color: #EBF5FB;
}

.objective-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.objective-icon {
    background: linear-gradient(135deg, #2E86C1, #1B4F72);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.objective-icon i {
    color: white;
    font-size: 1.5rem;
}

.objective-content h3 {
    margin-bottom: 1rem;
}

.focus-section {
    background-color: #fff;
}

.focus-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.focus-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.focus-icon {
    background-color: #F39C12;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.focus-icon i {
    color: white;
    font-size: 1.25rem;
}

.focus-text h3 {
    margin-bottom: 0.5rem;
}

.collaborations-section {
    background-color: #F5F8FA;
}

.collaboration-category {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.collaboration-category h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.collaboration-category h3 i {
    color: #2E86C1;
    margin-right: 0.75rem;
}

.plans-section {
    background-color: #EBF5FB;
}

.plans-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline {
    position: relative;
    padding-left: 3rem;
    margin: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2E86C1;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    width: 30px;
    height: 30px;
    background-color: #F39C12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-marker i {
    color: white;
    font-size: 1rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* 
=================================================
CONTACT PAGE STYLES
=================================================
*/

.contact-info-section {
    background-color: #fff;
}

.contact-card {
    background-color: #F5F8FA;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E86C1, #1B4F72);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    color: white;
    font-size: 1.75rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #566573;
    margin-top: 0.5rem;
}

.contact-form-section {
    background-color: #EBF5FB;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-content {
    padding: 2.5rem;
}

.contact-map-container {
    padding: 2.5rem;
}

.contact-map {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.transport-options {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.transport-options li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.transport-options li i {
    color: #2E86C1;
    margin-right: 0.75rem;
}

.faq-section {
    background-color: #F5F8FA;
}

.faq-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #EBF5FB;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    flex-grow: 1;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* 
=================================================
LEGAL PAGES STYLES
=================================================
*/

.legal-section {
    background-color: #F5F8FA;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.legal-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-text p, .legal-text ul, .legal-text ol {
    margin-bottom: 1.5rem;
}

.legal-text ul, .legal-text ol {
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #2E86C1;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #1B4F72;
}

.legal-text table {
    margin-bottom: 2rem;
}

/* 
=================================================
THANK YOU PAGE STYLES
=================================================
*/

.thank-you-section {
    background-color: #F5F8FA;
    padding: 5rem 1.5rem;
}

.thank-you-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E86C1, #1B4F72);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-icon i {
    color: white;
    font-size: 3rem;
}

.thank-you-message {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 2.5rem;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.related-content-section {
    background-color: #EBF5FB;
}

.related-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.related-image img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.related-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-content h3 {
    margin-bottom: 1rem;
}

.related-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* 
=================================================
RESPONSIVE STYLES
=================================================
*/

@media screen and (max-width: 1023px) {
    .section {
        padding: 4rem 1.5rem;
    }
    
    .hero-body {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 2rem;
        max-width: 600px;
    }
    
    .reverse-columns {
        flex-direction: column-reverse;
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 3rem 1.5rem;
    }
    
    .hero-body {
        min-height: 350px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content .title {
        font-size: 1.75rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-icon, .benefit-icon, .future-icon, .objective-icon, .tip-icon, .focus-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i, .benefit-icon i, .future-icon i, .objective-icon i, .tip-icon i, .focus-icon i {
        font-size: 1.25rem;
    }
    
    .contact-form-content, .contact-map-container {
        padding: 1.5rem;
    }
    
    .thank-you-container {
        padding: 2rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .button {
        width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 2.5rem 1rem;
    }
    
    .hero-content .title {
        font-size: 1.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
}