/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    --color-telegraph-brown: #8B4513;
    --color-ocean-blue: #1E90FF;
    --color-maori-black: #000000;
    --color-cloud-white: #F8F9FA;
    --color-accent-green: #2E8B57;
    --font-narrative: 'Lora', serif;
    --font-structural: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-structural);
    color: var(--color-maori-black);
    background: var(--color-cloud-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-narrative);
    font-weight: 600;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-telegraph-brown);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-maori-black);
    color: var(--color-cloud-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons button {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-structural);
    font-weight: 500;
    transition: var(--transition);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    background: var(--color-ocean-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #1873CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cloud-white);
    border: 2px solid var(--color-cloud-white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-secondary:hover {
    background: var(--color-cloud-white);
    color: var(--color-maori-black);
}

.btn-hero {
    background: var(--color-accent-green);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-hero:hover {
    background: #257048;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.4);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    background: var(--color-maori-black);
    color: var(--color-cloud-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-narrative);
}

.logo img {
    width: 50px;
    height: 50px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: var(--color-cloud-white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-green);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-cloud-white);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-telegraph-brown) 0%, var(--color-ocean-blue) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

/* ========================================
   Cards
   ======================================== */
.card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--color-ocean-blue);
}

/* ========================================
   Introduction Section
   ======================================== */
.intro-section {
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.intro-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-card:hover .intro-image img {
    transform: scale(1.1);
}

.intro-content h3 {
    font-size: 1.8rem;
    color: var(--color-telegraph-brown);
    margin-bottom: 15px;
}

.intro-content p {
    color: #555;
    line-height: 1.8;
}

/* ========================================
   Timeline Section
   ======================================== */
.timeline-section {
    background: var(--color-cloud-white);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-ocean-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
}

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

.timeline-marker {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--color-accent-green);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--color-ocean-blue);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

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

.timeline-content {
    position: relative;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-ocean-blue);
    margin-bottom: 10px;
    font-family: var(--font-narrative);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--color-telegraph-brown);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--color-telegraph-brown);
    margin-bottom: 15px;
}

.feature-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-link {
    color: var(--color-ocean-blue);
    font-weight: 600;
    display: inline-block;
}

.feature-link:hover {
    color: var(--color-accent-green);
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
    background: var(--color-cloud-white);
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.map-image {
    position: relative;
    width: 100%;
    height: 600px;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.map-legend {
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.map-legend h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-telegraph-brown);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.legend-color {
    width: 40px;
    height: 4px;
    border-radius: 2px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-ocean-blue), var(--color-accent-green));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--color-ocean-blue);
}

.cta-section .btn-primary:hover {
    background: var(--color-cloud-white);
    transform: translateY(-3px);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-maori-black);
    color: var(--color-cloud-white);
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-accent-green);
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.footer-col ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-accent-green);
    padding-left: 5px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background: var(--color-maori-black);
        transition: left 0.3s ease;
        padding: 20px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px !important;
        padding-right: 0 !important;
    }
    
    .timeline-marker {
        left: 21px !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .map-image {
        height: 400px;
    }
    
    .map-overlay {
        padding: 20px;
    }
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--color-telegraph-brown), var(--color-ocean-blue));
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ========================================
   Content Grids
   ======================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2,
.content-text h3 {
    color: var(--color-telegraph-brown);
    margin-bottom: 20px;
}

.content-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.alt-bg {
    background: var(--color-cloud-white);
}

/* ========================================
   Telegraph Page Styles
   ======================================== */
.telegraph-story {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-card {
    height: 100%;
}

.story-card h3 {
    color: var(--color-ocean-blue);
    margin-bottom: 15px;
}

.expansion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.expansion-card {
    display: flex;
    flex-direction: column;
}

.expansion-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.expansion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ========================================
   Telephone Page Styles
   ======================================== */
.exchange-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.automation-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.automation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Cables Page Styles
   ======================================== */
.strait-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strait-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pacific-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ========================================
   Modern Page Styles
   ======================================== */
.mobile-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-card {
    display: flex;
    flex-direction: column;
}

.tech-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fiber-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fiber-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: var(--color-telegraph-brown);
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 30px;
}

.info-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
}

.info-card h3 {
    color: var(--color-ocean-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 15px;
}

/* ========================================
   Forms
   ======================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-maori-black);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-structural);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-ocean-blue);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group span {
    font-weight: 400;
}

.checkbox-group a {
    color: var(--color-ocean-blue);
    text-decoration: underline;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

/* ========================================
   Inquiry Section
   ======================================== */
.inquiry-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.inquiry-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inquiry-text p {
    color: #555;
    line-height: 1.8;
}

/* ========================================
   Map Section
   ======================================== */
.map-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-info {
    position: absolute;
    bottom: 30px;
    right: 30px;
    max-width: 400px;
}

.map-info .card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.map-info h3 {
    color: var(--color-telegraph-brown);
    margin-bottom: 15px;
}

.map-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-grid .card h3 {
    color: var(--color-ocean-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-grid .card p {
    color: #555;
    line-height: 1.8;
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--color-telegraph-brown);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.legal-content h3 {
    color: var(--color-ocean-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content strong {
    color: var(--color-maori-black);
}

/* ========================================
   Responsive Updates
   ======================================== */
@media (max-width: 1024px) {
    .content-grid,
    .contact-grid,
    .inquiry-content {
        grid-template-columns: 1fr;
    }
    
    .telegraph-story,
    .expansion-grid,
    .exchange-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pacific-grid,
    .infrastructure-grid,
    .fiber-benefits,
    .future-grid,
    .modern-grid,
    .impact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .telegraph-story,
    .expansion-grid,
    .exchange-grid,
    .automation-cards,
    .strait-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        position: static;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .map-placeholder {
        height: auto;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-image,
    .expansion-image,
    .tech-image {
        height: 250px;
    }
}

