/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #21563C 0%, #0093de 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../media/pexels-kevin-ku-92347-577585.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-hero .lead {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    opacity: 0.6;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

/* About Content Section - FORCE LIGHT */
.about-content-section {
    padding: 80px 0;
    background: #ffffff !important;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #21563C !important;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6c757d !important;
    margin-bottom: 1.5rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Mission Vision Section - FORCE LIGHT */
.mission-vision-section {
    padding: 6rem 0;
    background: #f8f9fa !important;
    margin: 0 -2rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-card, .vision-card {
    background: #ffffff !important;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e6ed !important;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #21563C, #0093de);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #21563C !important;
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d !important;
}

/* Approach Section - FORCE LIGHT */
.approach-section {
    padding: 6rem 0;
    background: #ffffff !important;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #21563C !important;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.approach-intro {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6c757d !important;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: #ffffff !important;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e6ed !important;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #21563C, #0093de);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.approach-icon {
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #21563C !important;
    margin-bottom: 1rem;
}

.approach-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d !important;
}

/* Innovation Section - FORCE LIGHT */
.innovation-section {
    padding: 6rem 0;
    background: #f8f9fa !important;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.innovation-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #21563C !important;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.innovation-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6c757d !important;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #21563C, #0093de);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 86, 60, 0.3);
    text-decoration: none;
    color: #ffffff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: #ffffff !important;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e6ed !important;
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tech-item svg {
    margin-bottom: 1rem;
}

.tech-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #21563C !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card, .vision-card {
        padding: 2rem 1.5rem;
    }

    .mission-vision-section {
        padding: 4rem 0;
        margin: 0 -1rem;
    }

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

    .innovation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .approach-intro {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0 40px;
    }

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

    .mission-vision-section {
        padding: 3rem 0;
        margin: 0;
    }

    .approach-section {
        padding: 4rem 0;
    }

    .innovation-section {
        padding: 4rem 0;
    }

    .approach-card {
        padding: 2rem 1.5rem;
    }

    .tech-item {
        padding: 1rem;
    }

    .mission-vision-grid,
    .approach-grid {
        gap: 1.5rem;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 360px) {
    .approach-card {
        padding: 1.5rem 1rem;
    }

    .mission-card, .vision-card {
        padding: 1.5rem 1rem;
    }

    .tech-item {
        padding: 0.75rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-image,
    .mission-card,
    .vision-card,
    .approach-card,
    .tech-item,
    .btn {
        transition: none;
    }

    .mission-card:hover,
    .vision-card:hover,
    .approach-card:hover,
    .tech-item:hover,
    .btn:hover {
        transform: none;
    }
}

@media (prefers-contrast: high) {
    .mission-card,
    .vision-card,
    .approach-card,
    .tech-item {
        border: 2px solid #21563C !important;
    }
}

/* ========================================
   ENHANCED NETWORK SECTION - PROFESSIONAL DESIGN
   ======================================== */

.network-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%) !important;
    position: relative;
    overflow: hidden;
}

.network-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(33, 86, 60, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 85% 15%, rgba(0, 147, 222, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 40%);
    z-index: 1;
}

.network-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    position: relative;
    display: block;
    margin: 0 auto 3rem;
    text-align: center;
    width: 100%;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-green-dark) !important;
    padding: 2rem 0 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-green-bright), var(--color-blue-light));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(19, 206, 102, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-green-bright));
    border-radius: 2px;
    opacity: 0.8;
    box-shadow: 0 2px 6px rgba(255, 152, 0, 0.2);
}

.network-intro {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-gray-dark) !important;
    margin-bottom: 5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.network-intro::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-green-bright);
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(19, 206, 102, 0.4);
}

.network-intro::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--color-orange);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
}

.network-grid {
    display: grid;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.network-category {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.network-category:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.network-category h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-green-dark) !important;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.network-category h3::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-green-bright), var(--color-blue-light));
    border-radius: 50%;
    opacity: 0.2;
}

.network-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-green-bright), var(--color-orange));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(33, 86, 60, 0.3);
}

.website-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.website-btn {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95)) !important;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.website-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.website-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent, rgba(33, 86, 60, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.website-btn:hover::before {
    left: 100%;
}

.website-btn:hover::after {
    opacity: 1;
}

.website-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    text-decoration: none;
    color: inherit;
    border-color: rgba(33, 86, 60, 0.2) !important;
}

/* Enhanced Button Components */
.btn-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.website-btn:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.website-btn:hover .btn-icon::before {
    opacity: 1;
}

.btn-content {
    flex: 1;
    min-width: 0;
    position: relative;
}

.btn-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark) !important;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.btn-subtitle {
    display: block;
    font-size: 0.95rem;
    color: var(--color-gray-dark) !important;
    line-height: 1.5;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.website-btn:hover .btn-title {
    color: var(--color-green-dark) !important;
    transform: translateX(4px);
}

.website-btn:hover .btn-subtitle {
    color: var(--color-blue-dark) !important;
    opacity: 1;
    transform: translateX(4px);
}

.btn-arrow {
    width: 28px;
    height: 28px;
    color: var(--color-gray-light) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.website-btn:hover .btn-arrow {
    color: var(--color-white) !important;
    background: var(--color-green-bright);
    transform: translate(6px, -6px) rotate(45deg);
    box-shadow: 0 4px 16px rgba(19, 206, 102, 0.4);
}

/* ========================================
   ENHANCED BUTTON THEME COLORS & EFFECTS
   ======================================== */

.website-btn.primary {
    background: linear-gradient(135deg, rgba(33, 86, 60, 0.05), rgba(255, 255, 255, 0.95)) !important;
}

.website-btn.primary .btn-icon {
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-green-bright));
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(33, 86, 60, 0.3);
}

.website-btn.primary:hover {
    background: linear-gradient(135deg, rgba(33, 86, 60, 0.1), rgba(255, 255, 255, 1)) !important;
    border-color: rgba(33, 86, 60, 0.3) !important;
}

.website-btn.secondary {
    background: linear-gradient(135deg, rgba(0, 147, 222, 0.05), rgba(255, 255, 255, 0.95)) !important;
}

.website-btn.secondary .btn-icon {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue-light));
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(0, 147, 222, 0.3);
}

.website-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(0, 147, 222, 0.1), rgba(255, 255, 255, 1)) !important;
    border-color: rgba(0, 147, 222, 0.3) !important;
}

.website-btn.accent {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 255, 255, 0.95)) !important;
}

.website-btn.accent .btn-icon {
    background: linear-gradient(135deg, var(--color-orange), #ff7f50);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.website-btn.accent:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 255, 255, 1)) !important;
    border-color: rgba(255, 107, 53, 0.3) !important;
}

.website-btn.tech {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(255, 255, 255, 0.95)) !important;
}

.website-btn.tech .btn-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.website-btn.tech:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(255, 255, 255, 1)) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
}

/* Clean Official Partner Styling */
.website-btn.official {
    background: linear-gradient(135deg, rgba(33, 86, 60, 0.04), rgba(255, 255, 255, 0.98)) !important;
    border: 2px solid var(--color-green-bright) !important;
    position: relative;
    overflow: hidden;
}

.website-btn.official::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(19, 206, 102, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.website-btn.official:hover::before {
    opacity: 1;
}

.website-btn.official .btn-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    color: var(--color-green-dark);
    border: 1px solid var(--color-green-bright);
    box-shadow: 0 6px 20px rgba(19, 206, 102, 0.15);
}

.website-btn.official:hover {
    background: linear-gradient(135deg, rgba(33, 86, 60, 0.08), rgba(255, 255, 255, 1)) !important;
    border-color: var(--color-green-dark) !important;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(19, 206, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.website-btn.official .btn-title {
    color: var(--color-green-dark) !important;
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: initial;
}

.website-btn.official .btn-subtitle {
    color: var(--color-gray-dark) !important;
    font-weight: 400;
}

.website-btn.official:hover .btn-title {
    color: var(--color-green-bright) !important;
}

.website-btn.official:hover .btn-subtitle {
    color: var(--color-green-dark) !important;
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .network-section {
        padding: 6rem 0;
    }
    
    .network-category {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .website-buttons {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .website-btn {
        padding: 1.5rem;
    }
    
    .btn-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }
}

@media (max-width: 768px) {
    .network-section {
        padding: 5rem 0;
    }
    
    .network-section::before {
        opacity: 0.7;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title::before {
        width: 60px;
        height: 3px;
    }
    
    .section-title::after {
        width: 100px;
    }
    
    .network-intro {
        font-size: 1.1rem;
        margin-bottom: 4rem;
        padding: 0 1rem;
    }
    
    .network-intro::before {
        font-size: 3rem;
    }
    
    .network-grid {
        gap: 4rem;
    }
    
    .network-category {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    .network-category h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .network-category h3::before {
        width: 32px;
        height: 32px;
    }
    
    .network-category h3::after {
        width: 60px;
        height: 3px;
    }
    
    .website-buttons {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .website-btn {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .btn-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        margin-right: 1.25rem;
    }
    
    .btn-title {
        font-size: 1.125rem;
    }
    
    .btn-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-arrow {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .network-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .network-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 0.5rem;
    }
    
    .network-intro::before {
        font-size: 2.5rem;
        top: -15px;
    }
    
    .network-grid {
        gap: 3rem;
    }
    
    .network-category {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .network-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .network-category h3::before {
        width: 28px;
        height: 28px;
        top: -12px;
    }
    
    .network-category h3::after {
        width: 50px;
        height: 2px;
    }
    
    .website-btn {
        padding: 1.25rem;
        border-radius: 14px;
    }
    
    .btn-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        margin-right: 1rem;
    }
    
    .btn-title {
        font-size: 1rem;
    }
    
    .btn-subtitle {
        font-size: 0.85rem;
    }
    
    .btn-arrow {
        width: 22px;
        height: 22px;
    }
    
    /* Reduce animation intensity on small screens */
    .website-btn:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .website-btn:hover .btn-icon {
        transform: scale(1.05) rotate(3deg);
    }
    
    .website-btn:hover .btn-arrow {
        transform: translate(4px, -4px) rotate(30deg);
    }
}

@media (max-width: 360px) {
    .network-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .network-intro {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    .network-category {
        padding: 1.25rem 0.75rem;
    }
    
    .network-category h3 {
        font-size: 1.25rem;
    }
    
    .website-btn {
        padding: 1rem;
    }
    
    .btn-icon {
        width: 44px;
        height: 44px;
        margin-right: 0.75rem;
    }
    
    .btn-title {
        font-size: 0.95rem;
    }
    
    .btn-subtitle {
        font-size: 0.8rem;
    }
}

@media (prefers-contrast: high) {
    .website-btn {
        border: 2px solid #21563C !important;
    }
    
    .btn-title {
        color: #21563C !important;
        font-weight: 700 !important;
    }
    
    .btn-subtitle {
        color: #1a1a1a !important;
        font-weight: 500 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .website-btn,
    .btn-icon,
    .btn-arrow {
        transition: none;
    }
    
    .website-btn:hover {
        transform: none;
    }
    
    .website-btn:hover .btn-icon {
        transform: none;
    }
    
    .website-btn:hover .btn-arrow {
        transform: none;
    }
} 