:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c88a0;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f5f5f5;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Remove old menu styles */
.menu {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 95, 122, 0.8), rgba(44, 136, 160, 0.8)),
                url('afectados tarjetas revolving.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 2rem 2rem 4rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 2rem 3rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e67e22;
}

/* New Top Bar Styles */
.top-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    padding: 1rem;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.top-bar p {
    margin: 0;
    color: white !important; 
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* About/Team Section */
.about {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-size: 2rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.about h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-description {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.team-member p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    display: none;
}

.contact h2 {
    display: none;
}

.contact-form {
    display: none;
}

.form-group {
    display: none;
}

input, textarea {
    display: none;
}

input[type="tel"] {
    display: none;
}

textarea {
    display: none;
}

.submit-button {
    display: none;
}

/* Google Reviews Section */
.reviews {
    padding: 4rem 2rem 0;
    background: white;
}

.reviews-header {
    text-align: center;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-header h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 0 10px;
    line-height: 1.2;
}

.reviews-header .stars {
    color: #F4B400;
    font-size: 40px;
    line-height: 1;
}

.reviews-header p {
    color: #70757a;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.reviews-header .google-main-logo {
    width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.reviews-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 960px;  
    margin: 0 auto;
    padding: 10px 0;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #ddd;
    margin-bottom: 2rem;
}

.reviews-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 4px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.review-card {
    flex: 0 0 300px;  
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px;
}

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    margin-right: 10px;
    flex-shrink: 0;
    background-size: cover;
}

.name-date {
    line-height: 1.2;
}

.name {
    font-weight: bold;
    color: #000;
    margin: 0;
}

.date {
    color: #70757a;
    font-size: 12px;
    margin: 0;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating .stars {
    color: #F4B400;
    margin-right: 5px;
}

.rating .checkmark {
    color: #4285F4;
    font-size: 16px;
}

.review-text {
    position: relative;
    overflow: hidden;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.review-text.collapsed {
    max-height: 100px;
}

.read-more-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    padding: 5px 0;
    margin-top: 5px;
    font-weight: bold;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.review-text + .read-more-btn {
    display: block;
}

.google-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: auto;
    object-fit: contain;
}

/* Steps Section */
.steps-section {
    display: none;
}

.steps-container {
    display: none;
}

.steps-list {
    display: none;
}

.step-item {
    display: none;
}

.step-content {
    display: none;
}

.step-title {
    display: none;
}

.step-description {
    display: none;
}

/* Modern Process Banner */
.process-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.5rem 1rem;  
    color: white;
    margin-bottom: 1.5rem;
}

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

.process-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.process-intro {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.4;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 0.5rem;  
    text-align: left;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;  
    border-radius: 10px;  
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);  
    border-left: 3px solid var(--accent-color);  
}

.process-step:hover {
    transform: translateY(-3px);  
}

.process-step-number {
    font-size: 2rem;  
    font-weight: bold;
    margin-bottom: 0.3rem;  
    color: var(--accent-color);
    opacity: 0.9;
}

.process-step h3 {
    margin-bottom: 0.5rem;  
    font-size: 1.2rem;
}

.process-step p {
    font-size: 1rem;  
    line-height: 1.4;
}

.action-button.call {
    background-color: #FFA500;
}
.action-button.call:hover {
    background-color: #e59400;
}
.call-action {
    margin-top: 1.5rem;
    text-align: center;
}
.call-action p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.call-action .action-button.call {
    min-width: auto;
    padding: 0.5rem 1rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .process-banner {
        padding: 3rem 1.5rem;
    }

    .process-content h2 {
        font-size: 1.6rem;
    }

    .process-intro {
        font-size: 1.1rem;
    }

    .process-step {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.faq-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-question:hover {
    background-color: rgba(26, 95, 122, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.2rem;
}

.faq-answer p {
    margin: 0;
    padding: 1rem 0;
    line-height: 1.6;
    color: var(--text-color);
}

.faq-question.active + .faq-answer {
    max-height: 300px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-icon::before {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.faq-icon::after {
    width: 20px;
    height: 2px;
    left: 0;
    top: 9px;
}

.faq-question.active .faq-icon::before {
    transform: rotate(90deg);
}

.faq-question.active .faq-icon {
    transform: rotate(135deg);
}

/* Supreme Court Update Section */
.supreme-court-update {
    padding: 3rem 2rem;
    background: #fff;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    color: var(--text-color);
}

.supreme-court-update h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
    display: block;
}

.supreme-court-update h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.supreme-court-update p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.supreme-court-update .key-points {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.supreme-court-update .key-points li {
    margin-bottom: 1rem;
    color: blue;
    font-weight: bold;
}

.supreme-court-update .small-image {
    display: block;
    max-width: 80px;
    margin: 1rem auto;
}

@media (max-width: 768px) {
    .supreme-court-update {
        padding: 2rem 1.5rem;
        margin: 1.5rem;
    }
    
    .supreme-court-update h2 {
        font-size: 1.2rem;
    }
    
    .supreme-court-update p {
        font-size: 1rem;
    }
    
    .supreme-court-update .key-points li {
        font-size: 1rem;
    }
}

/* Success Stories Section */
.success-stories {
    padding: 2rem 1rem;
    background: #fff;
    margin-top: 0;
}

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

.success-stories-content h2 {
    color: var(--primary-color);
    font-size: 1.4rem;  
    margin-bottom: 0.3rem;
}

.success-stories-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.success-stories-content p:first-of-type {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.success-stories-content .metrics {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1rem;
}

.success-stories-content .outro {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Action Buttons Section */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    flex-wrap: wrap;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
    min-width: 200px;
    justify-content: center;
    color: white;
}

.action-button:hover {
    transform: translateY(-2px);
}

.action-button.whatsapp {
    background-color: #25D366;
}

.action-button.whatsapp:hover {
    background-color: #1DA851;
}

.action-button.phone {
    background-color: #1a73e8;
}

.action-button.phone:hover {
    background-color: #1557b0;
}

.action-button.email {
    background-color: #EA4335;
}

.action-button.email:hover {
    background-color: #d33426;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.nav-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-button:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-button {
        width: 200px;
        text-align: center;
    }
}

/* CTA Forum Section */
.cta-forum {
    display: none;
}

.cta-box {
    display: none;
}

.cta-content {
    display: none;
}

.cta-heading {
    display: none;
}

.cta-subheading {
    display: none;
}

.cta-buttons {
    display: none;
}

.cta-forum-button {
    display: none;
}

.cta-forum-button.whatsapp {
    display: none;
}

.cta-forum-button.phone {
    display: none;
}

/* Email Modal Styles */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.legal-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
    overflow-y: auto;
    max-height: 80vh;
}

.legal-modal h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-modal p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-modal ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

.legal-modal li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-modal a {
    color: var(--primary-color);
}

.legal-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    padding: 5px;
}

.legal-modal .close-modal:hover {
    color: #333;
}

.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.email-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

.email-modal h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.email-display {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    word-break: break-all;
}

.copy-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
}

.copy-button:hover {
    background-color: var(--secondary-color);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    padding: 5px;
}

.close-modal:hover {
    color: #333;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.phone {
    background-color: #1a73e8;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .menu {
        margin-top: 1rem;
    }

    .menu a {
        margin: 0 1rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
        min-height: 70vh;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 1.5rem;
    }
    
    .success-stories-content h2 {
        font-size: 1.1rem;
    }
    
    .success-stories-content p {
        font-size: 0.95rem;
    }
    
    .success-stories-content .metrics {
        font-size: 1rem;
    }
    
    .success-stories-content .outro {
        font-size: 0.95rem;
    }
    
    .about {
        padding: 3rem 1rem;
    }
    
    .about h2 {
        font-size: 1.8rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .reviews-header h2 {
        font-size: 24px;
    }
    
    .reviews-header .stars {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .reviews-container {
        max-width: 640px;  
    }
}

@media (max-width: 768px) {
    .reviews-container {
        max-width: 320px;  
    }
    .team-grid {
        gap: 2rem;
    }
    
    .team-image-container {
        width: 180px;
        height: 180px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Forum Section */
.forum {
    background: #f9f9f9;
    padding: 2rem;
    margin-top: 2rem;
}
.forum-content {
    max-width: 900px;
    margin: 0 auto;
}
.forum h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.forum-description {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    line-height: 1.6;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.forum-description h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.forum-description p {
    font-size: 1rem;
}
.forum-post {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}
.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #555;
}
.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.post-author {
    font-weight: bold;
    margin-right: auto;
}
.post-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}
.post-answer {
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
    margin-top: 1rem;
}
.answer-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}
.answer-author {
    font-weight: bold;
    margin-right: auto;
}

.forum-question-form {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
    display: block;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    display: block;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-question {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.submit-question:hover {
    background-color: #1DA851;
}

.submit-question svg {
    width: 24px;
    height: 24px;
}

/* Add a class to center text content */
.centered {
    text-align: center;
}

/* Remove offset for fixed header since it's no longer fixed */
main {
    padding-top: 0;
}

/* Costs Section Styles */
.costs {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.05), rgba(44, 136, 160, 0.05));
    position: relative;
    overflow: hidden;
}

.costs::before {
    content: '€';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    pointer-events: none;
}

.costs-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.costs h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.costs h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.costs .highlight-text {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1.5rem 0;
}

.costs .price-container {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    display: inline-block;
    min-width: 250px;
}

.costs .percentage {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

.costs .percentage span {
    font-size: 2rem;
}

.costs .price-details {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
}

.costs .details-list {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
    padding: 0;
    list-style: none;
}

.costs .details-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 0.95rem;
    color: #666;
}

.costs .details-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.costs .final-note {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 2rem;
    padding: 1rem;
    border: 2px solid var(--accent-color);
    display: inline-block;
    border-radius: 10px;
    background: rgba(243, 156, 18, 0.1);
}

@media (max-width: 768px) {
    .costs {
        padding: 3rem 1rem;
    }
    
    .costs-content {
        padding: 2rem 1rem;
    }
    
    .costs h2 {
        font-size: 1.6rem;
    }
    
    .costs .percentage {
        font-size: 3rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cookie-button.accept {
    background-color: var(--accent-color);
    color: white;
}

.cookie-button.accept:hover {
    background-color: #e67e22;
}

.cookie-button.reject {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

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

.cookie-button.settings {
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: underline;
    padding: 0.5rem;
}

.cookie-button.settings:hover {
    color: #e67e22;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Additional Information Section */
.additional-info {
    padding: 4rem 2rem;
    background: #f9f9f9;
}
.additional-info .container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.additional-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}
.additional-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 1.5rem;
}
.additional-info h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 1rem;
}
.additional-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.additional-info ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}
.additional-info li {
    margin-bottom: 0.5rem;
}