.mission-card {
    background: linear-gradient(135deg, var(--primary-color), #007c30);
    color: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 150, 57, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 150, 57, 0.4);
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.vision-card {
    background: linear-gradient(135deg, var(--secondary-color), #e6c40f);
    color: var(--dark-color);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(247, 214, 24, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(247, 214, 24, 0.4);
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

.values-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
    margin: 60px 0;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-item i {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.value-item h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
}

.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.team-section {
    background: white;
    padding: 60px 0;
    margin: 30px 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--tertiary-color), #a00e1f);
    color: white;
    padding: 60px 0;
    margin-top: 60px;
    text-align: center;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.btn-custom-light {
    background-color: white;
    color: var(--tertiary-color);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-custom-light:hover {
    background-color: var(--light-color);
    color: var(--tertiary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.contact-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.contact-card .icon {
    background: linear-gradient(135deg, var(--primary-color), #007c30);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.contact-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.contact-form-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s;
    font-size: 16px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 57, 0.25);
    outline: none;
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s;
    font-size: 16px;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 57, 0.25);
    outline: none;
}


.quick-contacts {
    background: linear-gradient(135deg, var(--tertiary-color), #a00e1f);
    color: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
}

.quick-contacts h3 {
    text-align: center;
    margin-bottom: 30px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quick-contact-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.quick-contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.quick-contact-item i {
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.quick-contact-item h5 {
    margin-bottom: 10px;
}

.response-time {
    background: linear-gradient(135deg, #e7f3ff, #cce7ff);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.response-time h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.time-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.time-item .time {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.time-item .label {
    color: var(--gray-color);
    font-size: 14px;
}

.faq-link {
    background: linear-gradient(135deg, var(--secondary-color), #e6c40f);
    color: var(--dark-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.faq-link h4 {
    margin-bottom: 15px;
}

.btn-custom-dark {
    background-color: var(--dark-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-custom-dark:hover {
    background-color: #1a252f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.social-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.social-section h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    background: linear-gradient(135deg, var(--primary-color), #007c30);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s;
}

.social-link:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 150, 57, 0.4);
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.linkedin:hover { background: #0077b5; }
.social-link.youtube:hover { background: #ff0000; }
.social-link.whatsapp:hover { background: #25d366; }

.office-hours {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.office-hours h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

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

.hours-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 25px;
    border-left: 5px solid var(--primary-color);
}

.hours-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hours-card h4 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

.error-message {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}



.legal-container {
    background: white;
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    counter-reset: section-counter;
}

.legal-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
    border-radius: 15px 15px 0 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.legal-header .icon {
    background: linear-gradient(135deg, var(--dark-color), #34495e);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.table-of-contents {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

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

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
}

.toc-list a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(10px);
}

.legal-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.legal-section h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.legal-section h3::before {
    content: counter(section-counter);
    counter-increment: section-counter;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    font-weight: 700;
}

.contact-section {
    background: linear-gradient(135deg, var(--tertiary-color), #a00e1f);
    color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.btn-custom-light {
    background-color: white;
    color: var(--tertiary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-custom-light:hover {
    background-color: var(--light-color);
    color: var(--tertiary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}


.quick-search {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 57, 0.25);
}

.search-box .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.category-nav {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.category-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    margin: 5px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.faq-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-category-icon {
    background: linear-gradient(135deg, var(--primary-color), #007c30);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.faq-category-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: none;
    padding: 20px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 16px;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), #007c30);
    color: white;
    box-shadow: none;
}

.accordion-body {
    padding: 25px;
    background: white;
    color: var(--gray-color);
    line-height: 1.7;
    font-size: 15px;
}

.contact-help {
    background: linear-gradient(135deg, var(--secondary-color), #e6c40f);
    color: var(--dark-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.btn-custom-dark {
    background-color: var(--dark-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-custom-dark:hover {
    background-color: #1a252f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}


.privacy-container {
    background: white;
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    counter-reset: section-counter;
}

.privacy-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
    border-radius: 15px 15px 0 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.privacy-header .icon {
    background: linear-gradient(135deg, var(--primary-color), #007c30);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.table-of-contents {
    background: linear-gradient(135deg, #e7f3ff, #cce7ff);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.toc-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.toc-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 150, 57, 0.2);
}

.toc-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.toc-item a i {
    margin-right: 10px;
    font-size: 18px;
}

.privacy-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.privacy-section h3 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.privacy-section h3::before {
    content: counter(section-counter);
    counter-increment: section-counter;
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    font-weight: 700;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s;
}

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

.right-card h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.right-card h5 i {
    margin-right: 10px;
    font-size: 20px;
}

.security-measures {
    background: linear-gradient(135deg, #e7f3ff, #cce7ff);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.security-measures h4 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.security-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.security-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-box {
    background: linear-gradient(135deg, var(--tertiary-color), #a00e1f);
    color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.btn-custom-light {
    background-color: white;
    color: var(--tertiary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.btn-custom-light:hover {
    background-color: var(--light-color);
    color: var(--tertiary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.error-page {
    padding: 100px 0;
    min-height: 60vh;
}

.error-icon {
    margin-bottom: 30px;
}

.error-code {
    font-weight: 700;
    margin-bottom: 20px;
}

.error-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.suggested-actions {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.suggested-actions h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.suggested-actions ul li {
    padding: 8px 0;
    transition: all 0.3s ease;
}

.suggested-actions ul li:hover {
    transform: translateX(5px);
}

.error-actions .btn {
    min-width: 160px;
    padding: 12px 20px;
    font-weight: 500;
}

code {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}


@media (max-width: 768px) {
    .mission-card,
    .vision-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .contact-section,
    .contact-form-section {
        padding: 25px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 15px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
}
