/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #006aa7;
    --secondary-yellow: #fecc00;
    --dark-blue: #004a7c;
    --light-gray: #f5f7fa;
    --medium-gray: #e1e8ed;
    --dark-gray: #657786;
    --text-dark: #14171a;
    --success-green: #17bf63;
    --warning-orange: #ff9500;
    --danger-red: #e0245e;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Background Decoration */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0, 106, 167, 0.05) 0%, rgba(254, 204, 0, 0.05) 100%);
    border-radius: 40%;
}

.wave-1 {
    top: -50%;
    left: -50%;
    animation: wave-rotate 20s linear infinite;
}

.wave-2 {
    top: -30%;
    right: -50%;
    animation: wave-rotate 25s linear infinite reverse;
    background: linear-gradient(135deg, rgba(254, 204, 0, 0.03) 0%, rgba(0, 106, 167, 0.03) 100%);
}

.wave-3 {
    bottom: -50%;
    left: -30%;
    animation: wave-rotate 30s linear infinite;
    background: linear-gradient(135deg, rgba(0, 74, 124, 0.04) 0%, rgba(254, 204, 0, 0.04) 100%);
}

@keyframes wave-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 106, 167, 0.1);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.95;
    text-align: left;
    margin: 0;
}

/* Header Navigation */
.header-nav {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Content */
main {
    padding: 3rem 0;
}

/* Hero Section */
.hero {
    padding: 3rem 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 106, 167, 0.2));
}

/* Network Info Cards */
.network-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.info-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    align-items: center;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 106, 167, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 106, 167, 0.2));
}

.info-card .label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card .value {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background-color: var(--success-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--success-green);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Test Section */
.test-section {
    text-align: center;
    padding: 3rem 0;
}

.test-container {
    padding: 3rem;
    border-radius: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.test-button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 106, 167, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.test-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.test-button:hover::before {
    width: 300px;
    height: 300px;
}

.test-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 106, 167, 0.5);
}

.test-button:active {
    transform: translateY(-1px);
}

.test-button:disabled {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
    cursor: not-allowed;
    box-shadow: none;
}

.button-icon {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.button-text {
    position: relative;
    z-index: 1;
}

/* Test Progress */
.test-progress {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    max-width: 500px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-yellow) 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 106, 167, 0.5);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Results Section */
.results {
    margin-top: 3rem;
    animation: fadeInUp 0.5s ease;
}

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

.results h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    padding: 2rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px 0 rgba(0, 106, 167, 0.2);
}

.result-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

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

.result-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.result-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.result-unit {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Quality Indicator */
.quality-indicator {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 106, 167, 0.1);
}

.quality-label {
    color: var(--dark-gray);
    margin-right: 1rem;
    font-weight: 600;
}

.quality-value {
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quality-value.excellent {
    background: linear-gradient(135deg, #17bf63 0%, #00c896 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quality-value.good {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0088cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quality-value.fair {
    background: linear-gradient(135deg, var(--warning-orange) 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quality-value.poor {
    background: linear-gradient(135deg, var(--danger-red) 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Info Section */
.info-section {
    margin-top: 5rem;
    padding: 3rem 0;
}

.info-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.info-box {
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 106, 167, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.info-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 106, 167, 0.2));
}

.info-box h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-box p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #002744 100%);
    color: var(--white);
    padding: 2.5rem 0;
    margin-top: 5rem;
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0.5rem 0;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image svg {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .test-button {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }

    .test-container {
        padding: 2rem;
    }

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

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

    .result-value {
        font-size: 2rem;
    }

    .network-info {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header h1 {
        font-size: 1.3rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .network-info {
        grid-template-columns: 1fr;
    }

    .test-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .test-container {
        padding: 1.5rem;
    }

    .result-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .result-icon {
        width: 60px;
        height: 60px;
    }

    .quality-value {
        font-size: 1.3rem;
    }

    .info-box {
        padding: 2rem;
    }

    .header-nav {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero {
    text-align: center;
    padding: 4rem 0 3rem;
    margin-bottom: 2rem;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.lead {
    font-size: 1.25rem;
    color: var(--dark-gray);
    line-height: 1.8;
    font-weight: 500;
}

.content-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    border-radius: 24px;
}

.content-section h2 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.feature-box {
    padding: 2rem;
    border-radius: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark-gray);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--secondary-yellow) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: 10px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-blue);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.timeline-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Operator Cards */
.operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.operator-card {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.operator-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.operator-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.operator-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 106, 167, 0.1);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.stat-value {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* Tech Specs */
.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 106, 167, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--dark-blue);
}

.spec-value {
    color: var(--dark-gray);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.comparison-col {
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

.comparison-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

.comparison-note {
    background: rgba(254, 204, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-yellow);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.faq-item summary {
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:before {
    content: "+";
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item[open] summary:before {
    content: "−";
}

.faq-item p {
    margin-top: 1rem;
    padding-left: 2.5rem;
    font-size: 0.95rem;
}

/* Resources */
.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 106, 167, 0.1);
}

.resource-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.resource-list li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 106, 167, 0.1) 0%, rgba(254, 204, 0, 0.1) 100%);
    border-radius: 24px;
    margin-top: 3rem;
}

.cta-section h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 106, 167, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 106, 167, 0.5);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 1.5rem;
    }

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

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

    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 45px;
    }

    .timeline-marker {
        left: 0;
    }

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

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* News Page Styles */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 0;
}

.news-card {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem 3rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-blue);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px 0 rgba(0, 106, 167, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
}

.news-link h2 {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.news-link:hover h2 {
    color: var(--primary-blue);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 100px;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 14px;
    color: var(--white);
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 106, 167, 0.2);
}

.date-day {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-top: 0.5rem;
    font-weight: 500;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h2 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.news-summary {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 106, 167, 0.08) 0%, rgba(0, 106, 167, 0.12) 100%);
    color: var(--primary-blue);
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 106, 167, 0.15);
    transition: all 0.2s ease;
}

.tag:hover {
    background: rgba(0, 106, 167, 0.15);
    border-color: var(--primary-blue);
}

/* Responsive News Styles */
@media (max-width: 768px) {
    .news-list {
        padding: 2rem 0;
        gap: 2rem;
    }

    .news-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        border-left: none;
        border-top: 5px solid var(--primary-blue);
    }

    .news-link {
        flex-direction: column;
        gap: 1.5rem;
    }

    .news-date {
        flex-direction: row;
        min-width: auto;
        gap: 1rem;
        padding: 1rem 1.5rem;
        align-self: flex-start;
        justify-content: center;
    }

    .date-day {
        font-size: 1.8rem;
    }

    .date-month {
        margin-top: 0;
    }

    .news-content h2 {
        font-size: 1.3rem;
    }

    .news-summary {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .news-list {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .news-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .news-date {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .date-day {
        font-size: 1.5rem;
    }

    .date-month {
        font-size: 0.8rem;
    }

    .news-content h2 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .news-summary {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .news-tags {
        gap: 0.5rem;
    }

    .tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pagination-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 106, 167, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 120px;
    text-align: center;
}

@media (max-width: 640px) {
    .pagination-controls {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .pagination-btn {
        flex: 1;
        min-width: 120px;
    }

    .page-info {
        flex-basis: 100%;
    }
}

/* News Article Styles */
.news-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-header {
    margin-bottom: 3rem;
    padding: 2rem;
    padding-bottom: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border-bottom: 3px solid var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 106, 167, 0.08);
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.article-meta time {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.article-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content .lead {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-content a {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-blue);
    transition: all 0.2s ease;
}

.article-content a:hover {
    color: var(--dark-blue);
    border-bottom-color: var(--dark-blue);
}

/* Responsive Article Styles */
@media (max-width: 768px) {
    .news-article {
        padding: 2rem 1.5rem;
    }

    .article-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .article-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-content {
        font-size: 1rem;
        line-height: 1.8;
    }

    .article-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .article-content p {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .news-article {
        padding: 1.5rem 1rem;
    }

    .article-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .article-header h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .article-content {
        font-size: 0.95rem;
    }

    .article-content h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .article-content p {
        margin-bottom: 1rem;
    }
}
