@import url('https://fonts.googleapis.com/css2?family=Ultra&display=swap');

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

:root {
    --primary-color: #FF6600;
    --primary-dark: #E55A00;
    --secondary-color: #003366;
    --accent-color: #FFC107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s ease;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: white;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.airline-name {
    font-family: 'Ultra', 'Cooper Black', 'Cooper Std Black', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-cta .btn {
    margin: 0;
    padding: 8px 16px;
    font-size: 12px;
}

.hero {
    background: var(--secondary-color);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-scene {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-scene > * {
    display: none;
}

.hero-plane,
.hero-plane-takeoff {
    position: absolute;
    z-index: 1;
}

.hero-option-1 .hero-plane {
    display: block;
    top: 32%;
    left: -8%;
    color: var(--primary-color);
    font-size: 74px;
    animation: hero-traverse 9s linear infinite;
}

.hero-option-2 {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.hero-option-2::before,
.hero-option-2::after {
    content: '';
    position: absolute;
    background: var(--secondary-color);
    opacity: .16;
    transform: rotate(-12deg);
}

.hero-option-2::before { width: 140%; height: 90px; top: 100px; left: -25%; animation: hero-bands 8s ease-in-out infinite; }
.hero-option-2::after { width: 140%; height: 22px; top: 245px; left: -20%; }
.hero-option-2 .hero-plane-takeoff { display: block; top: 56px; right: 12%; font-size: 112px; animation: hero-lift 3s ease-in-out infinite; }

.hero-option-5 { background: var(--primary-dark); }
.hero-option-5::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(#ffb000 1px, transparent 1px); background-size: 20px 20px; opacity: .45; animation: hero-drift 12s linear infinite; }
.hero-option-5 .hero-plane { display: block; top: 68px; right: 14%; font-size: 120px; transform: rotate(-25deg); animation: hero-pulse 2.6s ease-in-out infinite; }

.hero-option-6 { background: #152d4b; }
.hero-option-6 .hero-board { display: grid; position: absolute; inset: 48px 9% auto; grid-template-columns: 1.2fr .8fr .5fr; gap: 8px; color: #dcecff; font: 15px/1.2 monospace; }
.hero-option-6 .hero-board span { display: block; padding: 10px 8px; border-bottom: 1px solid rgba(255,255,255,.2); }
.hero-option-6 .hero-board span:nth-child(3n) { color: #ffb000; animation: hero-blink 2s step-end infinite; }

.hero-option-7 { background: var(--primary-color); color: var(--secondary-color); }
.hero-option-7::before { content: ''; position: absolute; left: -10%; right: -10%; bottom: -165px; height: 330px; border: 4px solid var(--secondary-color); border-radius: 50% 50% 0 0; opacity: .7; }
.hero-option-7 .hero-sun { display: block; position: absolute; top: 72px; right: 15%; width: 72px; height: 72px; background: #ffb000; border: 4px solid white; border-radius: 50%; animation: hero-rise 5s ease-in-out infinite; }

.hero-option-8 { background: var(--secondary-color); }
.hero-option-8::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 54px), repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 54px); }
.hero-option-8 .hero-radar { display: block; position: absolute; right: 12%; top: 55px; width: 230px; height: 230px; border: 3px solid var(--primary-color); border-radius: 50%; }
.hero-option-8 .hero-radar::before { content: ''; position: absolute; left: 50%; top: 50%; width: 50%; height: 3px; background: #ffb000; transform-origin: left; animation: hero-scan 3s linear infinite; }
.hero-option-8 .hero-radar::after { content: ''; position: absolute; left: 37%; top: 28%; width: 10px; height: 10px; background: #ffb000; border-radius: 50%; box-shadow: 72px 76px 0 var(--primary-color), 38px 128px 0 #ffb000; }

.hero-option-9 { background: #f8f8f6; color: var(--secondary-color); }
.hero-option-9 .hero-wordmark { display: block; position: absolute; right: -20px; top: -58px; color: var(--primary-color); font: 310px/1 'Cooper Black', 'Cooper Std Black', Georgia, serif; opacity: .14; animation: hero-wordmark 8s ease-in-out infinite; }
.hero-option-9::after { content: ''; position: absolute; inset: auto 0 0; height: 18px; background: var(--primary-color); }

.hero-option-10 { background-color: var(--secondary-color); background-image: linear-gradient(90deg, rgba(0,51,102,.94), rgba(0,51,102,.38)), url('../images/IMG_9018.PNG'); background-size: cover; background-position: center; }
.hero-option-10 .hero-photo-path { display: block; position: absolute; width: 108%; height: 3px; top: 45%; left: -4%; background: var(--primary-color); box-shadow: 0 18px 0 rgba(255,102,0,.55); transform: rotate(-5deg); animation: hero-sweep 6s ease-in-out infinite; }

@keyframes hero-traverse { to { transform: translateX(120vw); } }
@keyframes hero-bands { 50% { transform: translateX(10%) rotate(-12deg); } }
@keyframes hero-lift { 50% { transform: translateY(-15px) rotate(-8deg); } }
@keyframes hero-drift { to { background-position: 80px 60px; } }
@keyframes hero-pulse { 50% { transform: rotate(-25deg) scale(1.08); } }
@keyframes hero-blink { 50% { opacity: .35; } }
@keyframes hero-rise { 50% { transform: translateY(-16px); } }
@keyframes hero-scan { to { transform: rotate(360deg); } }
@keyframes hero-wordmark { 50% { transform: translateX(-50px); } }
@keyframes hero-sweep { 50% { transform: translateY(22px) rotate(-5deg); } }
}

@keyframes fly {
    0% {
        transform: translateX(0) translateY(0px);
    }
    50% {
        transform: translateX(100vw) translateY(20px);
    }
    100% {
        transform: translateX(100vw) translateY(0px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Cooper Black', 'Cooper Std Black', Georgia, serif;
    font-size: 56px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 10px;
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-option-2 .hero-kicker,
.hero-option-7 .hero-kicker { background: var(--secondary-color); }

.flight-search-section {
    padding: 40px 0;
    background-color: var(--bg-white);
}

.flight-search {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-60px);
    position: relative;
    z-index: 10;
}

.flight-search h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.search-form button {
    grid-column: 1 / -1;
}

.stats-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.stat-card h3 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.stat-card p {
    color: var(--text-light);
    font-size: 14px;
}

.featured-section {
    padding: 60px 0;
}

.featured-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

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

.flight-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.flight-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.flight-route {
    padding: 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.airport {
    text-align: center;
}

.code {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.arrow {
    display: block;
    font-size: 20px;
    color: var(--text-light);
    margin: 0 20px;
}

.flight-details {
    padding: 20px;
}

.flight-details p {
    margin-bottom: 8px;
    font-size: 13px;
}

.aircraft {
    color: var(--text-light);
    font-size: 12px;
}

.distance {
    color: var(--primary-color);
    font-weight: 600;
}

.flight-card .btn {
    display: flex;
    justify-content: center;
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

.why-us-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.why-us-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 14px 30px;
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 16px;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.search-results-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.results-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.search-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.filter-card h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.filter-form .form-group {
    margin-bottom: 16px;
}

.filter-form .form-group label {
    font-size: 13px;
}

.filter-form .form-group input,
.filter-form .form-group select {
    font-size: 13px;
    padding: 10px;
}

.price-slider {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

.time-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
}

.checkbox input {
    cursor: pointer;
}

.search-results {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.results-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
}

.results-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.results-header p {
    color: var(--text-light);
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.flights-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flight-list-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.flight-list-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.flight-main-info {
    flex: 1;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.airport-box {
    text-align: center;
    min-width: 80px;
}

.airport-code {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.airport-time {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.route-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.duration {
    font-size: 12px;
    color: var(--text-light);
}

.route-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-line i {
    color: var(--primary-color);
    font-size: 14px;
}

.flight-details-info {
    text-align: left;
    min-width: 140px;
}

.flight-number {
    font-weight: 700;
    font-size: 14px;
}

.flight-time {
    font-size: 12px;
    color: var(--text-light);
}

.aircraft {
    font-size: 12px;
    color: var(--text-light);
}

.flight-price {
    display: flex;
    flex-direction: column;
    align-items: right;
    min-width: 100px;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
}

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

.per-person {
    font-size: 11px;
    color: var(--text-light);
}

.flight-action {
    display: flex;
    gap: 10px;
}

.content-section {
    padding: 60px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.policy-content h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.policy-content h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.policy-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.policy-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-content a.btn {
    color: white;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content a.btn:hover {
    text-decoration: none;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.cookie-content p {
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.cookie-actions .btn {
    margin: 0;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 8px 20px 16px;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-sm);
    }

    .nav-menu.active li {
        width: 100%;
    }

    .nav-menu.active a {
        display: block;
        padding: 12px 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

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

    .flight-search {
        padding: 20px;
        transform: translateY(-40px);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .results-layout {
        grid-template-columns: 1fr;
    }

    .search-sidebar {
        order: 2;
    }

    .search-results {
        order: 1;
    }

    .flight-list-item {
        grid-template-columns: 1fr;
    }

    .flight-list-item > div {
        text-align: center;
    }

    .route-info {
        justify-content: center;
    }

    .flight-details-info {
        text-align: center;
    }

    .flight-price {
        align-items: center;
    }

    .flight-action {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .policy-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .stat-card {
        padding: 20px;
    }

    .flight-card .btn {
        margin: 0 15px 15px;
        width: calc(100% - 30px);
    }

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

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

    .flight-list-item {
        padding: 15px;
    }

    .airport-code {
        font-size: 16px;
    }

    .price {
        font-size: 20px;
    }
}
