/* About Page Card Rows */
.about-cards-rows {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}
.about-cards-row {
    display: flex;
    gap: 2.5rem;
}
@media (max-width: 900px) {
    .about-cards-row {
        flex-direction: column;
        gap: 2rem;
    }
}
/* About Page Horizontal Cards */
.about-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.about-card-horizontal {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.about-card-horizontal:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

.about-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    background: linear-gradient(135deg, var(--primary-blue, #0066CC), var(--geo-green, #00A86B));
    color: white;
    font-size: 3rem;
    border-radius: 16px 0 0 16px;
    margin-right: 0;
}

.about-card-content {
    flex: 1;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-content h2 {
    font-size: 1.8rem;
    color: var(--charcoal, #1A1A1A);
    margin-bottom: 1rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

.about-card-content p, .about-card-content ul {
    color: var(--slate, #2D3748);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.about-card-content ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .about-card-horizontal {
        flex-direction: column;
        min-height: unset;
    }
    .about-card-icon {
        border-radius: 16px 16px 0 0;
        min-width: unset;
        width: 100%;
        font-size: 2.5rem;
        padding: 2rem 0;
    }
    .about-card-content {
        padding: 2rem 1rem;
    }
}
/* Ensure about-image SVG is fully visible and responsive */
/* Center and fit SVG in about-image */

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-blue), var(--geo-green));
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.about-image svg {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}
/* Main Content (for policy and terms pages) */
.main-content {
    max-width: 900px;
    margin: 120px auto 40px auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,102,204,0.07);
    padding: 3rem 2.5rem;
}
.main-content h1 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}
.main-content h2 {
    color: var(--deep-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.main-content p, .main-content ul {
    margin-bottom: 1.2rem;
}
.main-content ul {
    padding-left: 1.5rem;
}
@media (max-width: 700px) {
    .main-content {
        padding: 1.5rem 0.7rem;
    }
    .nav-container {
        padding: 1rem 0.7rem;
    }
}
:root {
    --primary-blue: #0066CC;
    --deep-blue: #003D7A;
    --bright-blue: #0088FF;
    --geo-green: #00A86B;
    --dark-green: #006B4A;
    --light-green: #E8F5F1;
    --charcoal: #1A1A1A;
    --slate: #2D3748;
    --light-gray: #F7FAFC;
    --white: #FFFFFF;
    --accent-cyan: #00D9FF;
}

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

body {
    font-family: 'Space Mono', monospace;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

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

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button,
.nav-links a.cta-button {
    background: var(--primary-blue);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700 !important;
    transition: all 0.3s;
}

.cta-button:hover,
.nav-links a.cta-button:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--geo-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--geo-green);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--geo-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}