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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-logo img {
    border-radius: 5%;
    height: 60px;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.nav-menu a:hover::before {
    width: 80%;
}

.login-btn {
    background: #fbbf24;
    color: #1e3a8a !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    color: white;
}

.hamburger:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('../images/img2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7), 0 0 20px rgba(30, 58, 138, 0.3);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1e3a8a;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Add scroll indicator */
.hero::after {
    content: '\2193';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
    animation: scrollBounce 2s infinite;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    pointer-events: none;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.btn {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn.primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    border: 2px solid #fbbf24;
}

.btn.primary:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.btn.secondary {
    border: 2px solid white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn.secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn.piq-btn {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: 2px solid #059669;
    gap: 8px;
}

.btn.piq-btn:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    border-color: #047857;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4);
}

.btn.gallery-btn {
    background: #059669;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn.gallery-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}



/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

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

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

/* History Section */
.history-section {
    padding: 80px 0;
}

.history-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #1e3a8a;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: #fbbf24;
    border: 4px solid #1e3a8a;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-date {
    background: #1e3a8a;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f8fafc;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.no-content {
    text-align: center;
    color: #6c757d;
    grid-column: 1/-1;
    padding: 2rem;
    font-style: italic;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    font-weight: 600;
}

/* Enrollment Section */
.enrollment-section {
    padding: 80px 0;
}

.enrollment-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.enrollment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.enrollment-info h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.enrollment-info ul {
    margin-bottom: 2rem;
    padding-left: 20px;
}

.enrollment-info li {
    margin-bottom: 0.5rem;
}

.enrollment-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.enrollment-form h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3b82f6;
    opacity: 0.8;
}

.locations-container {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.location-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.map-placeholder i {
    font-size: 1.2rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.map-placeholder .location-info {
    flex: 1;
}

.map-placeholder p {
    margin: 0 0 3px 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.map-placeholder small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    display: block;
}

/* Alumni Section */
.alumni-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.alumni-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.alumni-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.alumni-photo {
    margin-bottom: 20px;
}

.alumni-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1e3a8a;
    transition: transform 0.3s ease;
}

.alumni-photo img:hover {
    transform: scale(1.05);
}

.alumni-info h3 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.alumni-info .rank {
    color: #059669;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.alumni-info .batch {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.alumni-info .achievement {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

.alumni-view-all {
    text-align: center;
    margin-top: 40px;
}

.alumni-view-all .btn {
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alumni-view-all .btn.secondary {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
}

.alumni-view-all .btn.secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 90vh;
        min-height: 550px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1e3a8a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem;
    }
    
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .about-section,
    .history-section,
    .gallery-section,
    .enrollment-section,
    .alumni-section {
        padding: 60px 0;
    }
    
    .about-section h2,
    .history-section h2,
    .gallery-section h2,
    .enrollment-section h2,
    .alumni-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .enrollment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .enrollment-form {
        padding: 1.5rem;
    }
    
    .alumni-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 0.9rem;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .hero {
        height: 100vh;
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 16px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 260px;
        min-width: 200px;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .about-section,
    .history-section,
    .gallery-section,
    .enrollment-section,
    .alumni-section {
        padding: 40px 0;
    }
    
    .about-section h2,
    .history-section h2,
    .gallery-section h2,
    .enrollment-section h2,
    .alumni-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-card {
        padding: 1.2rem;
    }
    
    .about-card i {
        font-size: 2.5rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .timeline-item {
        padding-left: 60px;
        padding-right: 15px;
    }
    
    .timeline-content {
        padding: 12px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .enrollment-form {
        padding: 1.2rem;
    }
    
    .enrollment-form input,
    .enrollment-form select,
    .enrollment-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .alumni-grid {
        grid-template-columns: 1fr;
    }
    
    .alumni-card {
        padding: 20px;
    }
    
    .alumni-photo img {
        width: 80px;
        height: 80px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .map-placeholder {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .map-placeholder p {
        font-size: 0.8rem;
    }
    
    .map-placeholder small {
        font-size: 0.65rem;
    }
}

/* About Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #1e3a8a;
    font-weight: 700;
}

.about-text em {
    color: #059669;
    font-style: italic;
    font-weight: 600;
}

/* Flying Dragons Logo */
.squadron-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flying-dragons-logo {
    max-width: 250px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.flying-dragons-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .squadron-logo {
        order: -1;
    }
    
    .flying-dragons-logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .flying-dragons-logo {
        max-width: 150px;
    }
}