@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-yellow: #f7d756;
    --light-yellow: #faf6e9;
    --dark-yellow: #e6b325;
    --bg-gradient: linear-gradient(135deg, #fdfbf3 0%, #f8f4e3 100%);
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;  
}

.navbar {
    background: rgba(255, 253, 246, 0.98);
    padding: 1.2rem 2.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--dark-yellow);
}

.nav-links a.active {
    color: var(--dark-yellow);
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(45, 45, 45, 0.7)), url('../img/home_bg.jpg') center center/cover no-repeat fixed;
    background-position: center;
    overflow: hidden;
}
 
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(45, 45, 45, 0.7)), url('../img/home_bg.jpg') center center/cover no-repeat;
        background-position: 50% 50%;
        min-height: 100vh;
        padding: 5rem 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: 50% 50%;
        padding: 4rem 0.75rem 2rem;
    }
    
    .cta-buttons {
        max-width: 180px;
        gap: 0.5rem;
    }

    .cta-button,
    .secondary-button {
        padding: 0.675rem 1.25rem;
        font-size: 0.875rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-button {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #ffea00ce;
    transform: translateY(-2px);
}

.hamburger-menu {
    display: none;
    width: 35px;
    height: 35px;
    background: #f8f7de;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.hamburger-menu span {
    font-size: 18px;
    color: #1e293b;
}

@media (max-width: 1020px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .hamburger-menu {
        display: flex;
        width: 40px;
        height: 40px;
        background: #f8f7de;
        border-radius: 8px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hamburger-menu:hover {
        background: var(--primary-yellow);
        transform: translateY(-2px);
    }

    .nav-brand span {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 200px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(229, 231, 235, 0.5);
        padding: 0.5rem;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 1.2rem;
        border-radius: 8px;
        font-size: 0.95rem;
        color: var(--text-dark);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: var(--light-yellow);
        color: #000;
        transform: translateX(5px);
    }

    .hero {
        min-height: calc(100vh - 60px);
        padding: 2rem 1rem;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero h1,
    .hero-subtitle,
    .hero p {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .cta-button,
    .secondary-button {
        width: 100%;
        text-align: center;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 1.5rem 0.75rem;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        max-width: 200px;
        gap: 0.75rem;
    }
}

.programs-section {
    background: var(--bg-gradient);
    padding: 3rem 0.5rem;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.programs-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0.5rem 0;
    position: relative;
}

.programs-grid {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    animation: scroll 15s linear infinite;
    width: max-content;
}

.programs-container:hover .programs-grid {
    animation-play-state: paused;
}

.program-card {
    min-width: 280px;
    max-width: 300px;
    padding: 1.25rem;
    height: 120px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}

.program-card h3 {
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.program-card p {
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.program-icon {
    color: var(--dark-yellow);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: rotateY(180deg);
    color: var(--primary-yellow);
}

@media (max-width: 640px) {
    .program-card {
        min-width: 260px;
        height: 130px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .program-card {
        min-width: 240px;
        height: auto;
        min-height: 120px;
        padding: 1rem;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
     }
    100% {
        transform: translateX(calc(-50% - 0.5rem));
     }
}

@media (max-width: 640px) {
    .program-card {
        min-width: 240px;
        max-width: 260px;
        height: 100px;
        padding: 0.875rem;
    }

    .program-card h3 {
        font-size: 0.85rem;
    }

    .program-card p {
        font-size: 0.75rem;
    }

    .program-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .program-card {
        height: auto;
        min-height: 90px;
        padding: 0.75rem;
    }

    .program-icon {
        font-size: 1.25rem;
        margin-bottom: 0.2rem;
        height: 20px;
    }

    .program-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }

    .program-card p {
        font-size: 0.75rem;
        line-height: 1.1;
    }
}

.features-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 2rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-yellow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    color: var(--dark-yellow);
}

.vision-mission-section {
    background: var(--bg-gradient);
    padding: 4rem 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.vision-mission-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.vision-mission-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(247, 215, 86, 0.1);
    min-height: 280px;
}

.vision-mission-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
    background: #ffffff;
}

.vision-mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vision-mission-box:hover::before {
    transform: scaleX(1);
}

.vision-mission-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    transition: all 0.4s ease;
    opacity: 0;
}

.vision-mission-box:hover::after {
    opacity: 1;
}

.box-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.box-header i {
    font-size: 2.75rem;
    padding: 1.25rem;
    background: var(--light-yellow);
    color: var(--dark-yellow);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.vision-mission-box:hover .box-header i {
    background: var(--primary-yellow);
    color: var(--text-dark);
    transform: rotateY(180deg);
    box-shadow: 0 5px 15px rgba(247, 215, 86, 0.3);
}

.box-header h2 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.vision-mission-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    text-align: center;
    margin: 0;
    font-weight: 400;
    max-width: 90%;
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 3rem 1rem;
    }
    
    .vision-mission-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 0.5rem;
        gap: 1.5rem;
    }

    .vision-mission-box {
        min-height: 250px;
        padding: 2rem;
    }
    
    .box-header i {
        font-size: 2.5rem;
        padding: 1.1rem;
    }
    
    .box-header h2 {
        font-size: 1.6rem;
    }
    
    .vision-mission-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vision-mission-section {
        padding: 2rem 0.5rem;
    }
    
    .vision-mission-container {
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .vision-mission-box {
        padding: 1.5rem;
        min-height: 220px;
    }
    
    .box-header i {
        font-size: 2.25rem;
        padding: 1rem;
    }
    
    .box-header h2 {
        font-size: 1.4rem;
    }
    
    .vision-mission-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.tracking-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 3rem 0;
    text-align: center;
}

.tracking-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.tracking-title {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tracking-form {
    background: rgba(44, 62, 80, 0.1);
    border: 1px solid rgba(240, 216, 120, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 auto;
}

.tracking-input-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

.tracking-input-wrapper {
    flex: 1;
    position: relative;
}

.tracking-input-wrapper i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.tracking-input {
    width: 100%;
    height: 46px;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    box-sizing: border-box;
}

.tracking-button {
    height: 46px;
    min-width: 140px;
    padding: 0 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tracking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tracking-result {
    margin-top: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-align: left;
    display: none;
    font-size: 0.95rem;
}

.tracking-result.show {
    display: block;
}

.tracking-result .details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-row:last-child {
    border-bottom: none;
}

.result-row strong {
    color: rgba(255, 255, 255, 0.7);
    min-width: 140px;
}

.status-badge {
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

.status-badge.approved {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.status-badge.rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.error-message {
    color: #fca5a5;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tracking-section {
        padding: 2rem 0;
    }

    .tracking-container {
        width: 92%;
        max-width: 400px;
        padding: 0 0.75rem;
    }

    .tracking-form {
        padding: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .tracking-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tracking-input,
    .tracking-button {
        height: 42px;
        width: 100%;
    }

    .tracking-button {
        margin-top: 0.25rem;
    }

    .result-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .result-row strong {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }
    
    .result-row span {
        font-size: 0.875rem;
        padding-left: 0.5rem;
    }

    .programs-grid {
        gap: 0.75rem;
    }

    .program-card {
        min-width: 240px;
        padding: 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .features-grid,
    .vision-mission-container {
        gap: 1rem;
        padding: 0.5rem;
    }

    .feature-card,
    .vision-mission-box {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .tracking-section {
        padding: 2rem 0;
    }

    .tracking-container {
        width: 92%;
        padding: 0 0.5rem;
    }

    .tracking-form {
        padding: 0.875rem;
    }

    .tracking-input,
    .tracking-button {
        height: 40px;
        font-size: 0.95rem;
    }

    .tracking-title {
        font-size: 1.25rem;
    }

    .program-card {
        min-width: 220px;
        max-width: 240px;
        height: 90px;
        padding: 0.75rem;
    }

    .program-card h3 {
        font-size: 0.8rem;
    }

    .program-card p {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .feature-card {
        padding: 0.875rem;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .box-header h2 {
        font-size: 1.25rem;
    }

    .vision-mission-container {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0;
        padding: 0.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    .vision-mission-box,
    .feature-card {
        padding: 0.875rem;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .vision-mission-section,
    .features-section,
    .programs-section,
    .tracking-section {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 360px) {
    .program-card {
        min-width: 130px;
    }

    .tracking-form {
        width: 95%;
        padding: 0.75rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.footer-column h3 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.contact-info i {
    color: var(--primary-yellow);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.contact-info span {
    flex: 1;
    font-size: 0.9rem;
    word-wrap: break-word;
    max-width: 100%;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-info span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info i {
        color: var(--primary-yellow);
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}
