:root {
    --primary-color: #1a365d;
    --secondary-color: #2a4365;
    --text-color: #2d3748;
    --light-bg: #e6f3ff;  
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.navbar {
    background-color: var(--primary-color);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.hero {
    padding: 3rem 2rem 4rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
                url('accidentes trafico almeria.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 0rem;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 1);
    padding: 1rem;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 1);
    font-weight: 500;
}

.cta-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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



.compensation-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.95)),
                url('accidentes trafico almeria.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.compensation-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.compensation-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 500;
}

.compensation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.compensation-card {
    background: white;
    padding: 1.5rem;  
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.compensation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.compensation-card:hover::before {
    opacity: 1;
}

.compensation-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.3rem;
    display: block;  
    text-align: center;  
}

.compensation-card h3::before {
    content: '';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.8rem;  
    color: var(--primary-color);
    opacity: 0.8;
    display: block;  
    margin-bottom: 0.3rem;  
    text-align: center;  
}

.compensation-card.card-coche h3::before {
    content: '\f1b9'; /* Coche */
}

.compensation-card.card-moto h3::before {
    content: '\f21c'; /* Moto */
}

.compensation-card.card-bici h3::before {
    content: '\f206'; /* Bicicleta/Patinete */
}

.compensation-card.card-atropello h3::before {
    content: '\f554'; /* Atropello de peatón */
}

.compensation-card.card-transporte h3::before {
    content: '\f207'; /* Transporte público */
}

.compensation-card.card-fallecimiento h3::before {
    content: '\271D'; /* Fallecimiento */
}

.compensation-card.card-lesiones h3::before {
    content: '\f0f8'; /* Lesiones graves */
}

.compensation-card.card-secuelas h3::before {
    content: '\f5da'; /* Secuelas físicas/psicológicas */
}

.compensation-card.card-danios h3::before {
    content: '\f1c0'; /* Daños materiales */
}



.compensation-card p {
    color: var(--text-color);
    line-height: 1.6;  
    font-size: 1rem;   
    margin-bottom: 1.5rem;  
}

.compensation-card .card-button {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    margin-top: auto;
}

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

.info-section {
    padding: 1.5rem;
    background-color: var(--light-bg);
    margin: 1.5rem auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.info-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.info-section .coat-of-arms {
    display: block;
    width: 120px;
    height: auto;
    margin: 1rem auto;
    opacity: 0.8;
}

.info-section p {
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    text-align: justify;
    line-height: 1.8;
    color: #4a5568;
}

.accordion {
    max-width: 100%;
    margin: 0.75rem auto;
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.accordion-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.accordion-item {
    margin-bottom: 0.4rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-header {
    background-color: white;
    padding: 0.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8fafc;
}

.accordion-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0.8rem;
    background-color: white;
}

.accordion-content.active {
    max-height: 250px;
    padding: 0.8rem;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.reforma-section {
    display: none;
}

.reforma-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
}

.small-coat {
    display: block;
    margin: 0.5rem auto;
    width: 200px;
}

.reforma-section p {
    text-align: justify;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.reforma-accordion .accordion-item {
    margin-bottom: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    overflow: hidden;
}

.reforma-accordion .accordion-header {
    background-color: #fff;
    padding: 0.7rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reforma-accordion .accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.reforma-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0.7rem;
    background-color: #fff;
}

.reforma-accordion .accordion-content.active {
    max-height: 150px;
    padding: 0.7rem;
}

.reforma-accordion .accordion-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.reforma-accordion .accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.reviews-section {
    margin-top: 4rem;
}

.team-section {
    padding: 3rem 2rem;
    text-align: center;
    background-color: white;
    margin: 1.5rem auto;
    max-width: 1200px;
}

.team-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.team-logo {
    width: 200px;
    height: auto;
    margin: 1.5rem auto;
    display: block;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 10%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.05);
}

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

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

.team-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    text-align: center;
}

.team-description p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-description p:last-child {
    margin-bottom: 0;
}

.contact-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
    margin: 3rem 0 0 0;
}

.contact-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.call-button {
    background-color: white;
    color: var(--primary-color);
}

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

.tramites-section {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tramites-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tramites-section > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.tramites-accordion .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.tramites-accordion .accordion-header {
    padding: 1rem;
    background-color: white;
    cursor: pointer;
}

.tramites-accordion .accordion-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.tramites-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8fafc;
}

.tramites-accordion .accordion-content.active {
    max-height: 500px;
    padding: 1rem;
}

.tramites-accordion .accordion-content ul {
    list-style-type: none;
    padding: 0;
}

.tramites-accordion .accordion-content li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.tramites-accordion .accordion-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.tramites-accordion .accordion-content p {
    margin-bottom: 1rem;
}

.faq-section {
    padding: 3rem 2rem;
    background-color: var(--light-bg);
    margin-top: 0rem;
}

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

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

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

.faq-item {
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-bg);
    padding: 1rem;
    cursor: pointer;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
    padding-right: 2.5rem;
    position: relative;
}

.faq-question h3::after {
    content: '+';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}

.faq-question.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
    padding: 0 1rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.footer {
    background-color: var(--primary-color);
    padding: 3rem 2rem;
    color: white;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

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

.footer-contact li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    width: 20px;
}

.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

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

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

.floating-button.call {
    background-color: var(--primary-color);
}

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

.floating-button i {
    font-size: 24px;
}

#my-google-reviews-wrapper .rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 2px;
}

#my-google-reviews-wrapper .rating .stars {
    color: #F4B400;
}

#my-google-reviews-wrapper .verified-badge {
    width: 24px;  
    height: 24px; 
    object-fit: contain;
}

#my-google-reviews-wrapper .rating .checkmark {
    display: none;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

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

.modal h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

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

.modal-section {
    margin-bottom: 2rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    margin: 0 auto;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.3rem;
}

.service-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

section[id="servicios"] {
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), 
                url('reclamar indemnizacion accidente trafico almeria.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem 1rem;
    margin-top: 0rem;
    text-align: center;
}

section[id="servicios"] > div {
    max-width: 1000px;
    margin: 0 auto;
}

section[id="servicios"] h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

section[id="servicios"] > div > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.4;
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.calculator-header {
    text-align: center;
    padding: 2rem 1rem;
    background: #F28707;
    color: white;
    margin-bottom: 2rem;
}

.calculator-header > div {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.calculator-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.association-section {
    padding: 4rem 2rem;
    background-color: white;
    margin-top: 1rem;
}

.association-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.association-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.association-content h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
}

.association-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.association-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.association-image {
    width: 100%;
    max-width: 400px;
}

.association-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 768px) {
    .association-images {
        flex-direction: column;
    }
}

.steps-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.intro-text {
    text-align: center;
    color: #2c2c2c;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 2px solid #F28707;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #F28707;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(242, 135, 7, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #F28707, #ff9f40);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.step-content {
    text-align: center;
    color: #2c2c2c;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .nav-menu {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 70px; 
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem 0;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 1000; 
    }

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

    .nav-menu li {
        margin: 1rem 0; 
    }
    
    .team-grid {
        gap: 2rem;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }

    .compensation-section {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .compensation-section h2 {
        font-size: 2rem;
    }
    
    .compensation-cards {
        gap: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 250px;
    }
    
    .association-container {
        flex-direction: column;
    }
    
    .association-image {
        max-width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        height: 30px;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.95);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-text {
    flex: 1;
    padding-right: 1rem;
}

.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: 500;
    transition: all 0.3s ease;
}

.accept-cookies {
    background: #F28707;
    color: white;
}

.accept-cookies:hover {
    background: #d67806;
}

.reject-cookies {
    background: #444;
    color: white;
}

.reject-cookies:hover {
    background: #333;
}

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