:root {
    --primary-color: #0066ff;
    --secondary-color: #0056b3;
    --background-color: #f8f9fa;
    --text-color: #333;
    --highlight-color: #00a8ff;
}

/* Importando fontes mais modernas do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
    background-image: url('images/ideb.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.2)
    );
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.95),
        rgba(0, 168, 255, 0.95)
    );
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.sre-logo {
    height: 50px;
    width: auto;
    display: block;
    max-width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin-right: 20px;
    height: 100%;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: block;
    white-space: nowrap;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hero {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #0055dd;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066cc;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.area-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
}

.area-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.area-card h3 {
    color: #0055dd;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.area-card p {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Estilos para as subpáginas */
.content-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.side-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    padding: 20px;
    margin: 20px auto;
    max-width: 1400px;
}

.image-left {
    margin-left: 8%;
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-right {
    margin-right: 8%;
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.center-image {
    max-width: 500px; /* Ajustado o tamanho */
    height: auto;
    margin: 0 20px; /* Adicionado margem */
}

.left-image {
    margin-right: 20px;
}

.right-image {
    margin-left: 20px;
}

/* Estilos para a página da equipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
}

.team-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0066ff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.team-card h3 {
    color: #0055dd;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.profile-info {
    text-align: left;
}

.profile-info p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    word-break: break-word;
    color: #0055dd;
}

.profile-info span {
    font-size: 1.2rem;
    min-width: 24px;
    color: #0055dd;
}

/* Estilos para a página de origem */
.text-content {
    background: rgba(255, 255, 255, 0.6);
    padding: 3rem;
    border-radius: 15px;
    line-height: 1.8;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.text-content p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: justify;
    line-height: 1.8;
    font-weight: 400;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Forçar organização em três colunas */
.team-grid .team-card:nth-child(3n+1) {
    grid-column: 1;
}

.team-grid .team-card:nth-child(3n+2) {
    grid-column: 2;
}

.team-grid .team-card:nth-child(3n) {
    grid-column: 3;
}

/* Responsividade */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid .team-card:nth-child(3n+1),
    .team-grid .team-card:nth-child(3n+2),
    .team-grid .team-card:nth-child(3n) {
        grid-column: auto;
    }
}

/* Estilos para o formulário de contato */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    min-height: calc(100vh - 80px); /* Altura total menos o header */
}

.content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.contact-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 800px; /* Altura mínima para garantir expansão */
}

.contact-section h1,
.contact-section h2 {
    text-align: center;
    color: #0055dd;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
}

.contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease;
}

.contact-form {
    flex: 1;
    width: 90%; /* Reduzido de 100% para 90% */
    max-width: 1000px; /* Ajustado o máximo */
    background: rgba(255, 255, 255, 0.6); /* Aumentado a transparência */
    padding: 3rem 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem auto; /* Centralizado com margin auto */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: rgba(0, 102, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.1);
}

/* Estilo para opções do select */
.form-group select option {
    padding: 10px;
    font-size: 1rem;
    background: white;
}

.form-group label {
    color: #0055dd; /* Cor azul para combinar com o tema */
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

button[type="submit"] {
    background: rgba(0, 102, 255, 0.9); /* Botão mais transparente */
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    margin: 2rem auto 0;
    display: block;
    min-width: 200px;
}

button[type="submit"]:hover {
    background: rgba(0, 102, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.content h1 {
    text-align: center;
    font-size: 3rem;
    color: #0055dd;
    margin: 3rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Mantendo a responsividade para telas menores */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

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

    .form-group input,
    .form-group select {
        padding: 1rem;
        font-size: 1.1rem;
    }

    button[type="submit"] {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.2rem;
    }
}

/* Estilos para a página de Sistemas e Plataformas */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.platform-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.platform-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.platform-image {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

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

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

.platform-card h3 {
    color: #0055dd;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.platform-card p {
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
}

/* Ajuste dos cards de Sistemas e Plataformas para mobile */
@media (max-width: 768px) {
    .platforms-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 15px;
        width: 100%;
    }

    .platform-card {
        width: 92%;
        margin: 0 auto;
        padding: 20px;
        max-width: none;
    }

    .platform-image {
        width: 180px;
        height: 180px;
        margin-bottom: 15px;
    }

    .platform-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .platform-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .platforms-grid {
        padding: 10px;
    }

    .platform-card {
        width: 95%;
        padding: 15px;
    }

    .platform-image {
        width: 150px;
        height: 150px;
    }

    .platform-card h3 {
        font-size: 1.1rem;
    }

    .platform-card p {
        font-size: 0.9rem;
    }
}

/* Ajuste para compensar o espaço da navbar fixa */
main {
    padding-top: 80px;
}

.social-media-link {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.social-media-link a {
    color: #0066ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-media-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.instagram-link {
    position: absolute;
    top: 10px;
    left: 120px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    text-decoration: none;
}

.instagram-icon {
    width: 15px;
    height: 15px;
    border-radius: 5px;
    object-fit: cover;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .social-media-link {
        padding: 3px 8px;
        font-size: 12px;
    }
    
    .instagram-icon {
        width: 20px;
        height: 20px;
    }
}

/* Estilos do menu mobile */
@media (max-width: 768px) {
    /* Reset do menu suspenso */
    .navbar {
        flex-direction: column;
        padding: 10px;
        position: fixed;
        width: 100%;
        z-index: 1000;
        background: linear-gradient(135deg, 
            rgba(0, 102, 255, 0.98),
            rgba(0, 168, 255, 0.98)
        );
    }

    .logo {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .sre-logo {
        height: 40px;
    }

    .social-media-link {
        margin-left: 10px;
        padding: 2px 8px;
    }

    .social-media-link a {
        font-size: 12px;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        padding: 5px 0;
    }

    .nav-links li {
        margin: 2px;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 6px 10px;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    /* Ajuste do conteúdo principal */
    main {
        padding-top: 120px;
        width: 100%;
    }

    .hero {
        padding: 15px;
    }

    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

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

    /* Ajuste dos cards de área */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .area-card {
        margin: 0 auto;
        width: 95%;
    }

    /* Ajuste das imagens laterais */
    .side-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        padding: 15px;
    }

    .image-left, .image-right {
        width: 180px;
        height: auto;
        margin: 0;
    }

    /* Ajuste do formulário */
    .contact-form {
        width: 92%;
        padding: 20px;
        margin: 10px auto;
    }

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

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 16px; /* Melhor para input mobile */
    }

    /* Ajuste do footer */
    footer {
        padding: 10px;
        margin-top: 20px;
    }

    footer p {
        font-size: 0.8rem;
    }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 360px) {
    .nav-links a {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

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

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

    .image-left, .image-right {
        width: 150px;
    }
}

/* Estilo para o conteúdo expandível */
.expandable-content {
    display: none;
    margin-top: 10px;
}

.expandable-content.active {
    display: block;
}

/* Estilos para o perfil expandível */
.detailed-info {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.detailed-info.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.basic-info {
    margin-bottom: 10px;
}

.expand-btn {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    border: 1px solid #0066ff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.expand-btn:hover {
    background: rgba(0, 102, 255, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.footer-credit {
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

.footer-credit p {
    color: rgba(0, 85, 221, 0.5);
    font-size: 0.8rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* Ajuste do footer para todas as páginas */
footer {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    text-align: center;
    width: 100%;
    backdrop-filter: blur(5px);
    position: relative; /* Adicionado para garantir que fique sobre o background */
    z-index: 1; /* Garante que o footer fique sobre outros elementos */
}

footer p {
    color: rgba(0, 85, 221, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* Ajuste para garantir que o footer fique sempre no final */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Adicione estes estilos à seção de formulário */
.form-group[id="municipios-sre"],
.form-group[id="outro-municipio"] {
    transition: all 0.3s ease;
    opacity: 1;
}

.form-group[id="municipios-sre"][style="display: none;"],
.form-group[id="outro-municipio"][style="display: none;"] {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

#municipio-lista,
#municipio-texto {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

#municipio-lista:focus,
#municipio-texto:focus {
    outline: none;
    border-color: rgba(0, 102, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.1);
}

/* Ajuste os estilos dos campos de município */
#municipios-sre,
#outro-municipio {
    display: none;
    transition: all 0.3s ease;
}

#municipios-sre.visible,
#outro-municipio.visible {
    display: block;
    opacity: 1;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#municipio-lista,
#municipio-texto {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

/* Garanta que os selects tenham o mesmo estilo */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem !important;
}

.success-section {
    text-align: center;
    padding: 4rem 2rem;
}

.success-section h1 {
    color: #0055dd;
    margin-bottom: 1rem;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #0055dd;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #0044bb;
    transform: translateY(-2px);
}

/* Estilos para a página de sucesso */
.success-section {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.success-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-section p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.back-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.back-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

@media (max-width: 768px) {
    .success-section {
        margin: 1rem;
        padding: 2rem 1rem;
    }
    
    .success-section h1 {
        font-size: 2rem;
    }
    
    .success-section p {
        font-size: 1rem;
    }
    
    .back-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
} 