* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Palette - "Electric Public Safety" */
    --primary-dark: #0f172a;       /* Deep Navy/Black */
    --primary-blue: #1e40af;       /* Strong Blue */
    --electric-blue: #38bdf8;      /* Cyan/Sky for accents */
    --vibrant-gold: #fbbf24;       /* Warning/Badge Gold */
    --gold-glow: #f59e0b;          /* Darker gold for glows */
    --action-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    
    /* Backgrounds */
    --bg-gradient-start: #0f172a;
    --bg-gradient-end: #172554;
    --bg-white: rgba(255, 255, 255, 0.95);
    --surface-glass: rgba(255, 255, 255, 0.95);
    --surface-dark: rgba(15, 23, 42, 0.95);
    
    /* Text */
    --text-primary: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #64748b;
    --text-secondary: #334155;
    
    /* Effects */
    --border-color: rgba(255, 255, 255, 0.2);
    --glow-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    --shadow-lg: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Changed to light text by default for dark background */
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Glassmorphism */
header {
    background: rgba(15, 23, 42, 0.85); /* Dark Navy Glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white; /* White text for logo */
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.3)); /* Gold glow behind logo */
}

.logo-title {
    font-size: 1.1rem; /* Slightly smaller for multi-line */
    font-weight: 800;
    color: white;
    line-height: 1.1; /* Tighter line height */
    white-space: normal; /* Allow wrapping */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.logo-title span:first-child {
    font-size: 1.25rem;
    color: var(--vibrant-gold); /* Highlight the township name */
}

.logo-title span:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
}

nav {
    display: flex;
    gap: 1rem; /* Tighter gap for pill buttons */
    align-items: center;
    background: rgba(255, 255, 255, 0.05); /* Subtle container for nav */
    padding: 0.5rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
}

nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

nav a.active {
    color: var(--primary-dark);
    background: var(--vibrant-gold); /* Gold active state */
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    font-weight: 800;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 4px;
}

/* Hero Section - Dynamic & Bold */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem 6rem;
    overflow: hidden;
    margin-bottom: -4rem; /* Overlap with next section */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* More vibrant overlay */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 64, 175, 0.7) 100%), 
                url('https://images.squarespace-cdn.com/content/v1/65661a008e39eb78a4ec7344/d19aa9d3-75cf-4d91-ae1b-9dd55d8146c0/68750262_2356005967769143_23472496206833244_n.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Add a cool mesh gradient effect overlay */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.4), transparent 40%),
                radial-gradient(circle at bottom left, rgba(251, 191, 36, 0.2), transparent 40%);
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    color: white;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem); /* Responsive typography */
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-line-1 {
    display: block;
    color: white;
}

.hero-line-2 {
    display: block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 0.2em; /* Fix clipping */
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 99px; /* Pill shape */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

/* Mission Section - Floating Card Style */
.mission-section {
    padding: 0 0 3rem 0;
    position: relative;
    z-index: 2;
}

.mission-content {
    background: var(--surface-glass);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--vibrant-gold); /* Changed to gold to stand out on dark background */
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Added shadow for readability */
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary); /* Fixed: Use defined dark text color */
    margin-bottom: 1rem;
}

.mission-content .lead {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b45309; /* Darker amber for readability on white */
}

/* Features Section - Grid of Cards */
.features-section {
    padding: 3rem 0;
    background: transparent; 
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    border-color: var(--vibrant-gold);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--vibrant-gold);
    color: var(--primary-dark);
    transform: rotate(5deg);
}

.feature-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: var(--vibrant-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.cta-content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Header (About, Contact) */
.page-header {
    background: transparent;
    padding: 3rem 0 2rem; /* Reduced from 6rem 0 4rem */
    text-align: center;
}

.page-header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem; /* Slightly smaller font */
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.25rem; /* Slightly smaller subtitle */
    color: rgba(255, 255, 255, 0.9);
}

/* Content Pages */
.page-content {
    background: linear-gradient(to bottom, #eff6ff, #f8fafc); /* Light blue to white gradient */
    padding: 6rem 0;
    border-radius: 40px 40px 0 0; /* Modern curve */
    min-height: 60vh;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1); /* Add shadow for depth */
}

/* About Page New Layout */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.about-text-block h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.about-text-side h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-text-side p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #bae6fd;
}

.highlight-box h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 900;
    font-size: 1.2rem;
}

.section-divider {
    text-align: center;
    margin-bottom: 3rem;
}

.section-divider h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-divider p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 50px; /* Center vertical */
    color: var(--primary-blue);
}

/* Values Section */
.values-section {
    margin-top: 5rem;
    text-align: center;
    background: var(--primary-dark);
    padding: 4rem 2rem;
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.3);
}

.values-section h2 {
    color: white;
    margin-bottom: 3rem;
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
}

.values-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.value-item:last-child {
    border-right: none;
}

.value-word {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vibrant-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.value-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .value-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 2rem;
    }
    
    .value-item:last-child {
        border-bottom: none;
    }
}

/* Benefit Cards for About Page */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--electric-blue);
}

.benefit-card h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info-section h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-info-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-card {
    background: white; /* Changed to white for light theme */
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex; /* Added flex layout */
    align-items: center;
    gap: 1.5rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--electric-blue);
    background: white;
}

.contact-icon {
    font-size: 2rem;
    background: #eff6ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary-blue);
}

.contact-details h3 {
    color: var(--primary-dark); /* Dark text */
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-details p, .contact-details a {
    color: var(--text-muted); /* Dark text */
    margin: 0;
}

.contact-details a:hover {
    color: var(--primary-blue);
}

.contact-form {
    background: white; /* Light theme */
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 1rem;
    border-radius: 12px;
    color: var(--primary-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
    outline: none;
}

/* CAPTCHA Styling */
.captcha-group {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #bae6fd;
}

.captcha-group label {
    color: var(--primary-blue);
    font-weight: 600;
}

.captcha-group #captcha-question {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.captcha-group input {
    max-width: 150px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 2.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.footer-section h4 {
    color: var(--vibrant-gold);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--vibrant-gold);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        align-items: stretch;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
        gap: 0.5rem;
    }

    nav.active {
        display: flex;
    }

    nav a {
        text-align: center;
        padding: 1rem;
        border-radius: 16px;
        color: white;
    }

    nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    nav a.active {
        background: var(--vibrant-gold);
        color: var(--primary-dark);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content {
        padding: 2rem;
    }
    
    .hero {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .logo-title {
        display: none; /* Hide title on very small screens if needed, or adjust size */
    }
    
    .btn {
        width: 100%;
    }
}
