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

.paragrafo-espacado {
    margin-bottom: 15px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header e Navegação */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5530;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    background: linear-gradient(135deg, #356743, #00ff62ca);
    color: white;
    transform: translateY(-2px);
}

.nav-menu li a.active {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
}

.nav-menu li a.associado-menu {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    font-weight: bold;
}

.nav-menu li a.associado-menu:hover {
    background: linear-gradient(135deg, #e67e00, #ff9500);
    transform: translateY(-2px);
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 50%, #ff8c00 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-100px);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.6s both;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Seções */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5530;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 2px;
}

/* Sobre Section */
.sobre {
    background: #f8f9fa;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify
}

.sobre-image {
    text-align: center;
}

.sobre-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Gestão Section */
.gestao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gestao-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.gestao-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.gestao-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Benefícios Section */
.beneficios {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
}

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

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.beneficio-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1.1rem
}

.beneficio-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.beneficio-item h3 {
    margin-bottom: 1rem;
    color: #ffa500;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0rem;
    font-weight: 600;
    color: #2c5530;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);


    font-size: 1.5rem;
    /* ou 20px */
    line-height: 1.7;
    color: #333;






}




.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span:first-child {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0%;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
    color: white;

    font-size: 1.0rem;
    /* ou 20px */
    line-height: 1.7;
    color: #333;
}

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

.faq-answer p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #2c5530, #4a7c59);
}

/* Como Funciona Section */
.como-funciona {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5530 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.como-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: float 30s infinite linear;
}

.como-funciona .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.como-funciona-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.como-funciona-steps {
    padding: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.step-item:nth-child(1) {
    animation-delay: 0.2s;
}

.step-item:nth-child(2) {
    animation-delay: 0.4s;
}

.step-item:nth-child(3) {
    animation-delay: 0.6s;
}

.step-item:nth-child(4) {
    animation-delay: 0.8s;
}

.step-number {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1e3a5f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.step-text h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.4;
}

.step-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.2rem;
}

.cta-container {
    text-align: center;
    margin-top: 2rem;
}

.cta-button-funciona {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1e3a5f;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button-funciona:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.como-funciona-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-step {
    text-align: center;
    position: relative;
}

.step-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: scale(1.05);
}

.step-image.usina {
    border: 3px solid #ffd700;
}

.step-image.torres {
    border: 3px solid #ff8c00;
}

.casa-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.step-label {
    color: white;
    font-weight: bold;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}


.form_orcamento {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}

.economia-badge {
    background: linear-gradient(135deg, #00ff62, #2c5530);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 0.5rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 255, 98, 0.3);
}

.energy-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
}

.flow-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #ffd700;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.flow-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
    font-size: 0.9rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsividade para Como Funciona */
@media (max-width: 768px) {
    .como-funciona-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }

    .step-text h3 {
        font-size: 1.1rem;
    }

    .visual-container {
        padding: 1rem;
    }

    .step-image {
        width: 100px;
        height: 70px;
    }

    .casa-icon {
        font-size: 3rem;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

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

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.3rem
}


.footer-social h4 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.1rem
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    color: #888;
}

/* Animações */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Seções com IDs para navegação */
section {
    scroll-margin-top: 80px;
}

/* Modal de Login */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
}

.close:hover {
    color: #333;
}

.modal h2 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2c5530;
}

.login-button {
    width: 100%;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.login-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

.success-message {
    color: #27ae60;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Seção de Gestão Protegida */
.gestao-protected {
    display: none;
}

.gestao-login-required {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 2rem 0;
}

.gestao-login-required h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.gestao-login-required p {
    color: #666;
    margin-bottom: 2rem;
}

.access-button {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.access-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.user-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.logout-button {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background: #c0392b;
}

/* Modal de Login do Associado */
.modal-associado {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-associado .modal-content {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
}

.modal-associado h2 {
    color: white;
    text-align: center;
}

.modal-associado .form-group label {
    color: white;
    font-weight: 500;
}

.modal-associado .form-group input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #333;
}

.modal-associado .form-group input:focus {
    border-color: white;
    background: white;
}

.modal-associado .login-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
}

.modal-associado .login-button:hover {
    background: white;
    color: #ff8c00;
}

.modal-associado .close {
    color: white;
}

.modal-associado .close:hover {
    color: #f0f0f0;
}

/* Seção do Associado */
.associado-section {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white;
}

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

.associado-login-required {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.associado-login-required h3 {
    color: white;
    margin-bottom: 1rem;
}

.associado-login-required p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.associado-access-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.associado-access-button:hover {
    background: white;
    color: #ff8c00;
    transform: translateY(-2px);
}

.associado-protected {
    display: none;
}

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

.dashboard-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.dashboard-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.dashboard-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dashboard-card h3 {
    margin-bottom: 1rem;
    color: white;
}

.dashboard-card p {
    color: rgba(255, 255, 255, 0.9);
}

#associadoLoginModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

#associadoLoginModal .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
}



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

.modal:target {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.modal-content input,
.modal-content select,
.modal-content button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    text-decoration: none;
    font-size: 28px;
    color: #333;
}


#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

#cookie-banner button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
}

#cookie-banner form {
    display: inline;
}