/* Base Styles */
:root {
    --primary-color: #003366;
    --secondary-color: #E74C3C;
    --accent-color: #F39C12;
    --light-color: #F5F5F5;
    --dark-color: #333333;
    --text-color: #444444;
    --white: #FFFFFF;
    --gray: #DDDDDD;
    --dark-gray: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #002244;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #C0392B;
}

.btn-secondary {
    background-color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: #E67E22;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-media a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.1rem;
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 5px;
}

.logo p {
    color: var(--dark-gray);
    font-style: italic;
}

.cta-buttons .btn {
    margin-left: 10px;
}

/* Navigation Styles */
nav {
    background-color: var(--primary-color);
}

.main-menu {
    display: flex;
    list-style: none;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    display: block;
    color: var(--white);
    padding: 15px 20px;
    font-weight: 600;
}

.main-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    width: 220px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    color: var(--dark-color);
    padding: 10px 15px;
    border-bottom: 1px solid var(--gray);
}

.dropdown-menu li a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* Highlights Section */
.highlights {
    padding: 60px 0;
    background-color: var(--white);
}

.highlights .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-item {
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* News & Events */
.news-events {
    padding: 60px 0;
    background-color: var(--light-color);
}

.news-events h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2rem;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-item h3 {
    padding: 20px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.date {
    padding: 0 20px;
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-item p {
    padding: 0 20px 20px;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.author strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Page Intro Sections */
.programs-intro,
.tuition-intro,
.catalog-intro,
.disclosures-intro,
.accreditation-intro,
.contact-intro {
    padding: 60px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.programs-intro h1,
.tuition-intro h1,
.catalog-intro h1,
.disclosures-intro h1,
.accreditation-intro h1,
.contact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Programs Page */
.programs-list {
    padding: 60px 0;
}

.degree-type-header {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray);
}

.degree-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.program-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 20px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.program-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.program-duration {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.program-description {
    margin-bottom: 20px;
}

.program-actions .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.program-cta {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-color);
}

.program-cta h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn {
    margin: 0 10px;
}

/* Tuition Page */
.tuition-rates {
    padding: 60px 0;
    background-color: var(--white);
}

.tuition-rates h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

.tuition-table {
    margin-bottom: 40px;
}

.tuition-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    border-bottom: 1px solid var(--gray);
}

.tuition-row.header {
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--white);
}

.tuition-cell {
    padding: 15px;
}

.additional-fees {
    margin-bottom: 40px;
}

.additional-fees h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.additional-fees ul {
    list-style-position: inside;
}

.additional-fees li {
    margin-bottom: 10px;
}

.financial-aid {
    padding: 60px 0;
    background-color: var(--light-color);
}

.financial-aid h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

.financial-aid p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.aid-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.aid-option {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aid-option h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.disclaimer {
    background-color: var(--white);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
}

.apply-now {
    padding: 60px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.apply-now h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.apply-now p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Catalog Page */
.catalog-content {
    padding: 60px 0;
    background-color: var(--white);
}

.catalog-download {
    text-align: center;
    margin-bottom: 60px;
}

.catalog-download h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.catalog-download .btn {
    margin-bottom: 20px;
}

.file-info {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.catalog-sections {
    margin-bottom: 60px;
}

.catalog-sections h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.catalog-sections ul {
    list-style-position: inside;
    column-count: 2;
    column-gap: 40px;
}

.catalog-sections li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.catalog-notice {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 5px;
}

.catalog-notice h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.catalog-notice p {
    margin-bottom: 15px;
}

/* Disclosures Page */
.student-statistics {
    padding: 60px 0;
    background-color: var(--white);
}

.student-statistics h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 5px;
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.stats-disclaimer {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
}

.additional-disclosures {
    padding: 60px 0;
    background-color: var(--light-color);
}

.additional-disclosures h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

.disclosure-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.disclosure-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.disclosure-item p {
    margin-bottom: 20px;
}

/* Accreditation Page */
.approval-status,
.accreditation-status,
.student-rights {
    padding: 60px 0;
}

.approval-status {
    background-color: var(--white);
}

.accreditation-status {
    background-color: var(--light-color);
}

.student-rights {
    background-color: var(--white);
}

.approval-card,
.accreditation-card,
.rights-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 5px;
}

.accreditation-card {
    background-color: var(--white);
}

.approval-card h3,
.accreditation-card h3,
.rights-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.approval-card p,
.accreditation-card p,
.rights-card p {
    margin-bottom: 15px;
}

address {
    font-style: normal;
    margin-bottom: 20px;
}

address a {
    color: var(--primary-color);
}

/* Contact Page */
.contact-form-section {
    padding: 60px 0;
    background-color: var(--white);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.contact-info-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info,
.contact-hours,
.department-contacts {
    margin-bottom: 40px;
}

.contact-info h3,
.contact-hours h3,
.department-contacts h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.department-contacts ul {
    list-style-position: inside;
}

.department-contacts li {
    margin-bottom: 10px;
}

.complaints-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.complaints-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

.process-step {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray);
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.ibhe-contact {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ibhe-contact h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Footer Styles */
.footer-main {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-main .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background-color: #002244;
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-main .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .catalog-sections ul {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .social-media {
        text-align: center;
    }
    
    .main-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .main-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .tuition-row {
        grid-template-columns: 1fr;
    }
    
    .tuition-row.header {
        display: none;
    }
    
    .tuition-cell {
        border-bottom: 1px solid var(--gray);
    }
    
    .tuition-cell::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
        color: var(--primary-color);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .program-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* About Page Styles */
.about-intro {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.about-intro h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    margin-top: 15px;
}

/* History Section */
.our-history {
    padding: 80px 0;
    background-color: #fff;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.history-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.milestone {
    text-align: center;
    padding: 15px;
    background-color: var(--light-color);
    border-radius: 5px;
}

.milestone .year {
    display: block;
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.history-image img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background-color: var(--light-color);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission, .vision {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission p, .vision p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Leadership */
.leadership {
    padding: 80px 0;
    background-color: #fff;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.leader-card {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.leader-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leader-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.leader-card .title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Values */
.values {
    padding: 80px 0;
    background-color: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Campus Tour */
.campus-tour {
    padding: 80px 0;
    background-color: #fff;
}

.tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tour-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tour-features {
    list-style: none;
    margin-bottom: 30px;
}

.tour-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tour-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.tour-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item img {
    border-radius: 5px;
    height: 200px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .history-content,
    .mission-vision .container,
    .tour-content {
        grid-template-columns: 1fr;
    }
    
    .history-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .about-intro h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tour-gallery {
        grid-template-columns: 1fr;
    }
}
  .address-link {
    color: white;              /* Texto siempre blanco */
    text-decoration: none;     /* Quita el subrayado por defecto */
  }

  .address-link:hover {
    color: #ddd;               /* Un blanco/gris suave al pasar el cursor */
    text-decoration: underline; /* Opcional: subrayado en hover */
  }

  
    .logo {
        display: flex;              /* Para alinear horizontalmente */
        align-items: center;        /* Centra verticalmente */
        gap: 10px;                  /* Espacio entre logo y texto */
    }

    .logo-img {
        height: 50px;               /* Ajusta el tamaño del logo */
        width: auto;                /* Mantiene proporciones */
    }

    .logo h1 {
        margin: 0;
        color: white;               /* O el color que uses en tu header */
    }

    .logo p {
        margin: 0;
        font-size: 14px;
        color: #ddd;
    }
