* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined');

/* Material Icons */
.material-icons {
    font-family: 'Material Icons' !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    word-wrap: normal !important;
    white-space: nowrap !important;
    direction: ltr !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid #333333;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-section:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar scroll effect */
nav.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #333333;
}

/* Explore Divisions Section */
.explore-divisions {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.divisions-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #06ffa5, #00d084);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divisions-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.division-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.division-card:nth-child(1) {
    border-left: 4px solid #00d4ff;
}

.division-card:nth-child(2) {
    border-left: 4px solid #ff006e;
}

.division-card:nth-child(3) {
    border-left: 4px solid #ffd60a;
}

.division-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.division-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
}

.division-card:hover::before {
    top: -20%;
    right: -20%;
}

.division-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

    /* Contact notification */
    .contact-notification {
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        max-width: min(100%, 380px);
        padding: 0.9rem 1rem;
        border-radius: 14px;
        background: rgba(20, 20, 20, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
        color: #f3f4f6;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.4;
        z-index: 1200;
    }

    .contact-notification .notification-text {
        flex: 1 1 auto;
        color: #e5e7eb;
    }

    .notification-close {
        border: none;
        background: transparent;
        color: #cbd5e1;
        font-size: 1.2rem;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .notification-close:hover,
    .notification-close:focus-visible {
        background-color: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        outline: none;
    }

    .contact-notification.hidden {
        display: none;
    }
    position: relative;
    z-index: 1;
}

.division-card-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .divisions-title {
        font-size: 2rem;
    }

    .divisions-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: slideGrid 20s linear infinite;
}

@keyframes slideGrid {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-top {
    width: 500px;
    height: 500px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent);
    animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-bottom {
    width: 600px;
    height: 600px;
    bottom: -30%;
    left: -5%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent);
    animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 4rem 2rem;
    animation: fadeInUp 1s ease 0.3s both;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 100%;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-wrapper {
    position: relative;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
}

.hero-logo {
    width: 280px;
    height: 280px;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.06);
    border: 1.5px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.08), inset 0 0 20px rgba(0, 212, 255, 0.02);
    animation: logoPulse 4s ease-in-out infinite, logoFloat 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-logo:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.12), inset 0 0 25px rgba(0, 212, 255, 0.04);
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.08), inset 0 0 20px rgba(0, 212, 255, 0.02);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.12), inset 0 0 25px rgba(0, 212, 255, 0.04);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: brightness(1.05) drop-shadow(0 0 10px rgba(0, 212, 255, 0.15));
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    flex: 0 1 500px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    animation: titleGlow 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
    line-height: 1.1;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.1));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2));
    }
}

.hero-description {
    font-size: 1.3rem;
    color: #a0a0a0;
    margin: 0 0 2.5rem 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* What We Build Section */
.what-we-build {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background-color: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #00d4ff;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    transform: translateY(-5px);
}

.card:hover::before {
    top: -20%;
    right: -20%;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon .material-icons {
    color: white;
    font-size: 32px;
}

/* Different colored cards */
.card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, #00d4ff, #0099d8);
}

.card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #ff006e, #ff1a8c);
}

.card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, #00d4ff, #00f0ff);
}

.card:nth-child(5) .card-icon {
    background: linear-gradient(135deg, #ffd60a, #ffc300);
}

.card:nth-child(6) .card-icon {
    background: linear-gradient(135deg, #06ffa5, #00d084);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.card-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Built By Section */
.built-by {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 0, 110, 0.08));
    border-radius: 20px;
    text-align: center;
}

.built-by-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff006e, #ff1a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.built-by-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Content & Community Section */
.content-community {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 6rem 2rem;
}

.community-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd60a, #ffc300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 4rem;
}

.social-links {
    display: flex;
    gap: 3.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #00d4ff;
    padding: 1rem 0;
}

.social-link:hover {
    background: transparent;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: none;
}

.social-link .material-icons {
    font-size: 40px;
    color: inherit;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid #333333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 16px;
}

/* Different colored social links */
.social-link:nth-child(1) {
    color: #ff006e;
}

.social-link:nth-child(1) .material-icons {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(255, 0, 110, 0.1));
    border-color: #333333;
}

.social-link:nth-child(1):hover .material-icons {
    background: linear-gradient(135deg, #ff006e, #ff1a8c);
    border-color: #ff006e;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.social-link:nth-child(2) {
    color: #06ffa5;
}

.social-link:nth-child(2) .material-icons {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(6, 255, 165, 0.1));
    border-color: #333333;
}

.social-link:nth-child(2):hover .material-icons {
    background: linear-gradient(135deg, #06ffa5, #00d084);
    border-color: #06ffa5;
    box-shadow: 0 10px 30px rgba(6, 255, 165, 0.3);
}

.social-link:nth-child(3) {
    color: #ffd60a;
}

.social-link:nth-child(3) .material-icons {
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.1), rgba(255, 214, 10, 0.1));
    border-color: #333333;
}

.social-link:nth-child(3):hover .material-icons {
    background: linear-gradient(135deg, #ffd60a, #ffc300);
    border-color: #ffd60a;
    box-shadow: 0 10px 30px rgba(255, 214, 10, 0.3);
}

.social-link:nth-child(4) {
    color: #7c3aed;
}

.social-link:nth-child(4) .material-icons {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.1));
    border-color: #333333;
}

.social-link:nth-child(4):hover .material-icons {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.social-label {
    font-size: 0.5rem;
    font-weight: 400;
    margin-top: 0.2rem;
    display: block;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .built-by {
        padding: 4rem 2rem;
    }

    .built-by-title {
        font-size: 1.8rem;
    }

    .built-by-subtitle {
        font-size: 1rem;
    }

    .community-title {
        font-size: 1.8rem;
    }

    .social-links {
        gap: 2.5rem;
    }

    .social-link {
        width: 70px;
        padding: 0.8rem 0;
    }

    .social-link .material-icons {
        font-size: 32px;
        width: 70px;
        height: 70px;
    }

    .social-label {
        font-size: 0.45rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        width: 60px;
        padding: 0.6rem 0;
    }

    .social-link .material-icons {
        font-size: 28px;
        width: 60px;
        height: 60px;
    }

    .social-label {
        font-size: 0.4rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .hero-logo {
        width: 240px;
        height: 240px;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        display: none;
    }

    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }

    .hero-content {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-logo-wrapper {
        width: 100%;
        justify-content: center;
    }

    .hero-text {
        text-align: center;
        align-items: center;
        width: 100%;
        flex: 1;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
        padding: 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}


.site-footer {
    background: linear-gradient(180deg, #050505 0%, #131313 100%);
    border-top: 1px solid #222;
    padding: 6rem 2rem 3rem;
    color: #d3d3d3;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    object-fit: cover;
    background: #111;
    padding: 0.35rem;
}

.footer-logo h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.footer-brand p {
    max-width: 420px;
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 1.5rem;
}

.footer-column h4,
.footer-contact h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column a,
.footer-contact a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover,
.footer-contact a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.footer-social a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #222;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: #00d4ff;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    color: #8f8f8f;
    font-size: 0.95rem;
}

.footer-policy-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-policy-links a {
    color: #8f8f8f;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-policy-links a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-policy-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }
}
