/* GES Website Styles - Modern, Dark Theme, Responsive */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Realistic Starry Night Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Milky Way-like gradient */
        radial-gradient(ellipse at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        /* Dense starfield */
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 15% 35%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 25% 15%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 35% 45%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 45% 25%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 55% 55%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 65% 35%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 75% 65%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 85% 45%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 95% 75%, rgba(255, 255, 255, 0.5), transparent),
        /* Brighter stars */
        radial-gradient(2px 2px at 30% 70%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 70% 30%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1.5px 1.5px at 50% 80%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 20% 60%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 80% 80%, rgba(255, 255, 255, 0.9), transparent);
    background-color: #0a0a0a;
    animation: starTwinkle 8s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes starTwinkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Subtle Nebula Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 60% 40%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(255, 119, 198, 0.03) 0%, transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(120, 219, 255, 0.04) 0%, transparent 45%);
    animation: nebulaShift 15s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes nebulaShift {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.05) rotate(1deg); }
}

h1, h2, h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00aaff;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.7));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #00aaff;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

#globe-container {
    flex: 1;
    height: 500px;
    max-width: 500px;
    margin-left: 2rem;
    animation: fadeIn 2s ease-out;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.card h3 {
    margin-bottom: 1rem;
}

/* Team Cards */
.member-card {
    perspective: 1000px;
    width: 300px;
    height: 400px;
    margin: 1rem;
}

.member-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.member-card:hover .member-card-inner {
    transform: rotateY(180deg);
}

.member-card-front, .member-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.member-card-front {
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #00d4ff;
}

.member-card h3 {
    margin-bottom: 0.5rem;
}

.member-card p {
    color: #b0b0b0;
}

.member-card-back {
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    color: #000;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.member-card-back p {
    margin-bottom: 1rem;
    color: #000;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #000;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Event Cards */
.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

/* Forms */
form {
    max-width: 600px;
    margin: 2rem auto;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.9);
    text-align: center;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    padding: 2rem;
    border-radius: 0 0 15px 15px;
}

.nav-links.active li {
    margin: 1rem 0;
}

/* Contact Page Styles */
#contact-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.1));
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

#contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    display: block;
}

.stat span {
    font-weight: bold;
    color: #00aaff;
}

#contact-info {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

#contact-info h2 {
    margin-bottom: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

#contact-form-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    margin-bottom: 1rem;
}

.form-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #00d4ff;
}

.form-group label i {
    margin-right: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-top: 0.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    border-color: #00d4ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.submit-btn i {
    margin-right: 0.5rem;
}

#faq-preview {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.faq-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Membership Page Styles */
#membership-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.1));
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

#membership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.membership-hero-content {
    position: relative;
    z-index: 2;
}

.membership-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.membership-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.membership-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.membership-highlights .highlight {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-highlights .highlight i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    display: block;
}

.membership-highlights .highlight span {
    font-weight: bold;
    color: #00aaff;
}

#membership-types {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

#membership-types h2 {
    margin-bottom: 3rem;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.membership-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.membership-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.membership-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #00aaff;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.membership-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.membership-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
}

.membership-card li i {
    color: #00d4ff;
    margin-right: 0.5rem;
}

.membership-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #666, #888);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.membership-btn.primary {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
}

.membership-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

#benefits {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

#benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

#join-process {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

#join-process h2 {
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.step h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.step p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Events Page Specific Styles */

/* Geomatics Icons Animation */
.geomatics-icons {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#member-verification {
    padding: 2rem 0 5rem;
}

.member-verification-shell {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.member-verification-title {
    margin-bottom: 2rem;
    text-align: center;
}

.member-verification-intro {
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
}

.member-verification-card {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.member-verification-icon {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    color: #00d4ff;
}

.member-verification-card-title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.member-verification-card-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.member-verification-link {
    display: inline-block;
    width: auto;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: #28a745;
}

.member-verification-meta {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.floating-geomatics-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    animation: geomaticsFloat 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes geomaticsFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(0.9);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
        opacity: 1;
    }
}

/* Event Filters and Search */
#event-filters {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.search-bar input {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    color: #e0e0e0;
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.filter-buttons, .view-toggle {
    display: flex;
    gap: 1rem;
}

.filter-btn, .view-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #e0e0e0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover, .view-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.filter-btn.active, .view-btn.active {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-color: #00d4ff;
}

/* Enhanced Event Cards */
.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.event-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-category i {
    font-size: 1rem;
}

.event-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.event-badge.upcoming {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
}

.event-badge.past {
    background: linear-gradient(45deg, #666, #888);
    color: #fff;
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content, .past-event-content {
    padding: 1.5rem;
}

.event-content h3, .past-event-content h3 {
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.event-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.event-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-capacity, .event-deadline {
    background: rgba(255, 119, 198, 0.1);
    color: #ff77c6;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 119, 198, 0.2);
}

.event-description, .past-event-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
}

.register-btn, .learn-more-btn, .view-details-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.register-btn {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.learn-more-btn, .view-details-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.learn-more-btn:hover, .view-details-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.past-event-image {
    height: 180px;
    overflow: hidden;
}

.past-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .past-event-image img {
    transform: scale(1.05);
}

.event-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.event-photos img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.event-photos img:hover {
    transform: scale(1.05);
}

.past-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Spotlight Grid */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Loading Placeholders */
.loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #b0b0b0;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 212, 255, 0.1);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Team Page Styles */

/* Board Section */
#board-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    margin: 2rem 0;
    border-radius: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Board Member Cards */
.board-member-card {
    height: 450px;
    perspective: 1000px;
}

.board-member-card .member-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.board-member-card:hover .member-card-inner {
    transform: rotateY(180deg);
}

.board-member-card .member-card-front,
.board-member-card .member-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.board-member-card .member-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.member-image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.member-image-container img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00d4ff;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
}

.board-member-card:hover .member-image-container img {
    transform: scale(1.1);
}

.member-role-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.board-member-card .member-card-front h3 {
    margin-bottom: 0.5rem;
    color: #00d4ff;
    font-size: 1.3rem;
}

.board-member-card .member-card-front .member-role {
    color: #b0b0b0;
    font-weight: 500;
}

.board-member-card .member-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.board-member-card .member-card-back h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.board-member-card .member-message {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

/* Members Section */
#members-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.members-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.batch-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.batch-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.batch-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.batch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.batch-header h3 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin: 0;
}

.batch-count {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.batch-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.batch-members-wrapper {
    overflow: hidden;
}

.batch-members {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 220px);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: auto;
    padding: 0.35rem 0.1rem 0.75rem;
    -ms-overflow-style: none;
}

.batch-members.is-ready {
    scroll-behavior: smooth;
}

.batch-members::-webkit-scrollbar {
    display: none;
}

.batch-scroll-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.14);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.28);
    box-shadow: none;
    transition: all 0.3s ease;
}

.batch-scroll-btn:hover:not(:disabled) {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.28);
}

.batch-scroll-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.batch-member-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    scroll-snap-align: start;
    min-height: 100%;
}

.batch-member-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.batch-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.batch-member-card .member-image-container {
    margin-bottom: 1rem;
}

.batch-member-card .member-image-container img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease;
}

.batch-member-card:hover .member-image-container img {
    transform: scale(1.1);
}

.batch-member-card .member-info h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.batch-member-card .member-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .batch-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .batch-carousel {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .batch-members {
        grid-auto-columns: minmax(160px, 72vw);
    }

    .batch-scroll-btn {
        display: none;
    }
}

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* GPU Acceleration for animations */
.board-member-card,
.batch-section,
.batch-member-card {
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateZ(0);
    }
    to {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

/* Reduce paint on scroll */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize social links hover */
.social-links a {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #hero {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    #globe-container {
        margin-left: 0;
        margin-top: 2rem;
        height: 300px;
        max-width: 300px;
    }

    .member-card {
        width: 250px;
        height: 350px;
    }

    .card {
        margin: 0.5rem;
        padding: 1rem;
    }

    #contact-hero {
        padding: 2rem 1rem;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    #globe-container {
        height: 250px;
        max-width: 250px;
    }

    .member-card {
        width: 200px;
        height: 300px;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .membership-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .membership-cards {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .member-verification-shell {
        padding: 2.5rem 1rem;
    }

    .member-verification-card {
        padding: 1.75rem;
    }

    .member-verification-intro {
        font-size: 1.05rem;
    }

    .member-verification-card-title {
        font-size: 1.5rem;
    }
}

/* About Page Styles */
#about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-title span {
    font-weight: bold;
    color: #00d4ff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 20%; }
.floating-icon:nth-child(2) { top: 30%; right: 10%; }
.floating-icon:nth-child(3) { top: 50%; left: 10%; }
.floating-icon:nth-child(4) { bottom: 20%; right: 20%; }
.floating-icon:nth-child(5) { bottom: 10%; left: 50%; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

#mission-vision {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    margin: 4rem 0;
    border-radius: 20px;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.mv-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.mv-card p {
    line-height: 1.7;
    color: #e0e0e0;
    text-align: center;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    opacity: 0.6;
}

.motto-section {
    text-align: center;
    margin-top: 4rem;
}

.motto-container {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 3rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.motto-container i {
    font-size: 2rem;
    color: #00d4ff;
}

.motto-container h2 {
    font-size: 1.8rem;
    color: #00d4ff;
    font-style: italic;
    margin: 0;
}

#expertise {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#expertise h2 {
    margin-bottom: 3rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.expertise-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.expertise-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.expertise-item h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.expertise-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

#timeline {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    margin: 4rem 0;
    border-radius: 20px;
}

#timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff, #00aaff, #0080ff);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.timeline-content h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #b0b0b0;
    line-height: 1.6;
}

#impact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#impact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-text {
    color: #e0e0e0;
}

.impact-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.impact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.impact-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.impact-highlights .highlight.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.impact-highlights .highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.impact-highlights .highlight i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.impact-highlights .highlight span {
    color: #b0b0b0;
    font-weight: 500;
}

.impact-visual {
    text-align: center;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.2));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.stat-circle.animate-in {
    opacity: 1;
    transform: scale(1);
}

.stat-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-circle .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 0.25rem;
}

.stat-circle .stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    #about-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-elements {
        display: none;
    }

    .mv-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 30px;
    }

    .impact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-highlights {
        grid-template-columns: 1fr;
    }
}

/* What We Do Page Styles */
#services-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-title span {
    font-weight: bold;
    color: #00d4ff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.feature-item i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.feature-item span {
    color: #b0b0b0;
    font-weight: 500;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.tech-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.tech-icon {
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    animation: techFloat 4s ease-in-out infinite;
}

.tech-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

#core-services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#core-services h2 {
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

#advanced-apps {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

#advanced-apps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.apps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.app-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.app-category.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.app-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-header i {
    font-size: 2rem;
    color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.2));
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.category-header h3 {
    color: #00d4ff;
    margin: 0;
}

.app-category p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-category ul {
    list-style: none;
    padding: 0;
}

.app-category li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.app-category li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

#work-process {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#work-process h2 {
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00aaff);
    transform: translateY(-50%);
}

.process-step:last-child .step-number::after {
    display: none;
}

.step-content {
    text-align: center;
}

.step-content h3 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

#services-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.1));
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-primary {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.cta-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Responsive Design for What We Do Page */
@media (max-width: 768px) {
    #services-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .apps-container {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        gap: 1rem;
    }

    .process-step .step-number::after {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Resources Page Styles */

#resources-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60vh;
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#resources-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.resources-hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.resources-hero-content .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.resources-hero-content .hero-title span {
    font-weight: bold;
    color: #00d4ff;
}

.resources-hero-content .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.resources-hero-content .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.resources-hero-visual {
    flex: 1;
    position: relative;
    height: 350px;
}

#magazine-library {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem;
}

#magazine-library .section-kicker {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: #7ee6ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.magazine-feature-card h2 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.magazine-feature-card p {
    color: #b0b0b0;
    font-size: 1rem;
    max-width: 680px;
}

.magazine-feature-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(0, 212, 255, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.magazine-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transform: translateX(-100%);
    animation: spotlightSweep 10s linear infinite;
}

.magazine-feature-copy {
    position: relative;
    z-index: 1;
}

.spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.spotlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e0e0e0;
    font-size: 0.9rem;
}

.spotlight-chip i {
    color: #00d4ff;
}

.magazine-stack {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-sheet,
.stack-cover {
    position: absolute;
    width: 200px;
    height: 250px;
    border-radius: 22px;
}

.stack-sheet {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.sheet-1 {
    transform: rotate(-12deg) translate(-20px, 14px);
}

.sheet-2 {
    transform: rotate(-4deg) translate(-6px, 8px);
}

.sheet-3 {
    transform: rotate(6deg) translate(14px, 2px);
}

.stack-cover {
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.65)),
        linear-gradient(135deg, #00d4ff, #0077ff 55%, #091d3f);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.stack-cover span {
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.stack-cover strong {
    color: #fff;
    font-size: 1.7rem;
    line-height: 1.15;
}

/* Magazine Page */
#magazines-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.magazines-hero-copy .hero-title {
    font-size: 3.3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.magazines-hero-copy .hero-subtitle {
    max-width: 620px;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.magazines-hero-copy .hero-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

#magazines-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 4rem;
}

#magazines-archive .section-header {
    max-width: 760px;
    margin-bottom: 2rem;
}

#magazines-archive .section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

#magazines-archive .section-header p {
    color: #b0b0b0;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.magazine-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.magazine-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.magazine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.16);
    border-color: rgba(0, 212, 255, 0.28);
}

.magazine-card:hover::before {
    opacity: 1;
}

.magazine-card > * {
    position: relative;
    z-index: 1;
}

.magazine-issue {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    color: #8cecff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.magazine-card h3 {
    color: #f5fbff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.magazine-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
    min-height: 4.2em;
}

.magazine-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.magazine-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 122px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.magazine-link.primary {
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    color: #03121d;
    box-shadow: 0 10px 22px rgba(0, 212, 255, 0.22);
}

.magazine-link.secondary {
    border: 1px solid rgba(0, 212, 255, 0.28);
    background: rgba(0, 212, 255, 0.08);
    color: #89ebff;
}

.magazine-link:hover {
    transform: translateY(-2px);
}

.magazine-page-backlink {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.5rem;
    color: #8cecff;
    font-weight: 600;
}

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

/* Resources Grid */
#resources {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Resource Card Styles */
.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.resource-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.resource-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.resource-card h2 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.resource-list li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list li:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.resource-list .bullet {
    color: #00d4ff;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.resource-list strong {
    color: #00aaff;
    font-weight: 600;
    font-size: 0.85rem;
}

.resource-card .card-footer {
    text-align: left;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.explore-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.explore-link:hover {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Resources CTA Section */
#resources-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 170, 255, 0.08));
    padding: 3rem 2rem;
    margin: 3rem auto;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
}

#resources-cta .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#resources-cta .cta-content p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

#resources-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

#resources-cta .cta-primary {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

#resources-cta .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

#resources-cta .cta-secondary {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

#resources-cta .cta-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

/* Staggered animations for resource cards */
.resources-grid .resource-card:nth-child(1) { animation-delay: 0.1s; }
.resources-grid .resource-card:nth-child(2) { animation-delay: 0.15s; }
.resources-grid .resource-card:nth-child(3) { animation-delay: 0.2s; }
.resources-grid .resource-card:nth-child(4) { animation-delay: 0.25s; }
.resources-grid .resource-card:nth-child(5) { animation-delay: 0.3s; }
.resources-grid .resource-card:nth-child(6) { animation-delay: 0.35s; }
.resources-grid .resource-card:nth-child(7) { animation-delay: 0.4s; }

/* Responsive Design for Resources Page */
@media (max-width: 768px) {
    #resources-hero {
        flex-direction: column;
        text-align: center;
        padding: 5rem 1.5rem 3rem;
    }

    .resources-hero-content .hero-title {
        font-size: 2.5rem;
    }

    .resources-hero-content .hero-subtitle {
        font-size: 1rem;
    }

    .resources-hero-content .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .resources-hero-visual {
        display: none;
    }

    #resources {
        padding: 1rem;
    }

    #magazine-library {
        padding: 0 1rem 1rem;
    }

    .magazine-feature-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .magazine-feature-card h2 {
        font-size: 1.9rem;
    }

    .magazine-stack {
        min-height: 220px;
    }

    .stack-sheet,
    .stack-cover {
        width: 170px;
        height: 215px;
    }

    #magazines-hero {
        grid-template-columns: 1fr;
        padding: 5rem 1rem 2rem;
    }

    .magazines-hero-copy .hero-title {
        font-size: 2.5rem;
    }

    #magazines-archive {
        padding: 1rem 1rem 3rem;
    }

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

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .resource-card {
        padding: 1.25rem;
    }

    #resources-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }

    #resources-cta .cta-content h2 {
        font-size: 1.5rem;
    }

    #resources-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Notice Page */
.nav-links a.active {
    color: #00d4ff;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

#notice-hero {
    max-width: 1200px;
    margin: 2rem auto 1.25rem;
    padding: 3.25rem 2.5rem;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(0, 212, 255, 0.16), rgba(0, 128, 255, 0.06)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.6rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.notice-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.glow-one {
    width: 260px;
    height: 260px;
    top: -90px;
    right: -70px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.35), transparent 70%);
}

.glow-two {
    width: 220px;
    height: 220px;
    bottom: -100px;
    left: -60px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.28), transparent 72%);
}

.notice-hero-content h1 {
    font-size: 3.1rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-align: left;
}

.notice-hero-content p {
    max-width: 660px;
    margin: 0;
    color: #b0b0b0;
    font-size: 1.03rem;
    text-align: left;
}

.notice-hero-actions {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.notice-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: #c7ecff;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
    transition: all 0.3s ease;
}

.notice-secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.6);
}

.notice-quick-meta {
    display: grid;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.meta-item {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.meta-label {
    color: #9cb7cc;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.meta-item strong {
    color: #e6f8ff;
    font-size: 0.93rem;
}

.notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.1);
    position: relative;
    z-index: 2;
}

#notice-board {
    max-width: 1200px;
    margin: 0 auto 3.5rem;
    padding: 1rem 2rem 2rem;
}

.notice-board-head {
    margin-bottom: 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    align-items: stretch;
}

.notice-board-head h2 {
    margin-bottom: 0.4rem;
}

.notice-board-head p {
    color: #b0b0b0;
}

.publish-tip {
    width: min(420px, 100%);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.publish-tip i {
    color: #00d4ff;
    font-size: 1.05rem;
    margin-top: 0.15rem;
}

.publish-tip h3 {
    font-size: 0.96rem;
    margin-bottom: 0.3rem;
    color: #dff7ff;
}

.publish-tip p {
    margin: 0;
    font-size: 0.9rem;
    color: #b8c7d6;
}

.notice-list {
    display: grid;
    gap: 1.1rem;
}

.notice-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.85), rgba(0, 128, 255, 0.35));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.notice-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 14px 30px rgba(0, 212, 255, 0.2);
}

.notice-card:hover::before {
    opacity: 1;
}

.notice-priority-high {
    border-left: 4px solid #00d4ff;
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.18) inset;
}

.notice-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.65rem;
}

.notice-type {
    display: inline-block;
    padding: 0.27rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.14);
    color: #00d4ff;
    font-size: 0.82rem;
    font-weight: 600;
}

.notice-date {
    color: #a9bed2;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.notice-card h3 {
    margin-bottom: 0.55rem;
    color: #dff7ff;
    font-size: 1.28rem;
    line-height: 1.32;
}

.notice-summary {
    color: #d0d8e2;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.notice-content {
    color: #b0b0b0;
}

.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.8rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.4);
    font-weight: 600;
    transition: all 0.25s ease;
}

.notice-link:hover {
    color: #b2ebff;
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.16);
}

.notice-attachments {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.attachments-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a9bed2;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.attachments-label i {
    color: #00d4ff;
}

.attachments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.notice-attachment {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.notice-attachment:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
}

.attachment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 170, 255, 0.15));
    border-radius: 6px;
}

.attachment-icon i {
    font-size: 0.9rem;
    color: #00d4ff;
}

.notice-attachment:hover .attachment-icon {
    background: linear-gradient(135deg, #00d4ff, #00aaff);
}

.notice-attachment:hover .attachment-icon i {
    color: #000;
}

.attachment-name {
    font-weight: 500;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.attachment-type {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border-radius: 4px;
    font-weight: 600;
}

.notice-empty {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.notice-empty i {
    color: #00d4ff;
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    display: block;
}

@media (max-width: 768px) {
    #notice-hero {
        margin: 1rem;
        padding: 2.5rem 1.1rem;
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .notice-hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .notice-hero-content p {
        text-align: center;
        margin: 0 auto;
    }

    .notice-hero-actions {
        justify-content: center;
    }

    #notice-board {
        padding: 1rem;
    }

    .notice-board-head {
        flex-direction: column;
    }

    .publish-tip {
        width: 100%;
    }

    .notice-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
}

/* Visitor Quote Toast */
.visitor-quote-toast {
    position: fixed;
    top: 98px;
    right: 24px;
    width: min(420px, calc(100vw - 32px));
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.18), rgba(12, 22, 44, 0.92));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 1300;
    animation: quoteToastIn 0.65s ease forwards;
}

.visitor-quote-toast.fade-out {
    animation: quoteToastOut 0.75s ease forwards;
}

.visitor-quote-text {
    margin: 0;
    color: #e7f9ff;
    font-size: 0.95rem;
    line-height: 1.45;
}

.visitor-quote-author {
    margin: 0.45rem 0 0;
    color: #9ddfff;
    font-weight: 600;
    font-size: 0.84rem;
}

@keyframes quoteToastIn {
    from {
        opacity: 0;
        transform: translateY(-14px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes quoteToastOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-12px) scale(0.97);
    }
}

@media (max-width: 768px) {
    .visitor-quote-toast {
        top: 84px;
        right: 12px;
        left: 12px;
        width: auto;
    }
}

.hidden {
    display: none;
}

        /* Newsletter Page Specific Styles */
        
        /* Hero Section */
        #newsletter-hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .floating-shapes {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 170, 255, 0.05));
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(255, 119, 198, 0.15), rgba(255, 119, 198, 0.05));
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(120, 219, 255, 0.2), rgba(120, 219, 255, 0.05));
            bottom: 20%;
            left: 30%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        .newsletter-hero-content {
            text-align: center;
            max-width: 800px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 170, 255, 0.1));
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            color: #00d4ff;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .hero-badge i {
            margin-right: 0.5rem;
        }

        .newsletter-hero-content .hero-title {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .newsletter-hero-content .hero-title span {
            display: block;
            font-weight: bold;
            color: #00d4ff;
            -webkit-text-fill-color: #00d4ff;
        }

        .newsletter-hero-content .hero-subtitle {
            font-size: 1.3rem;
            color: #b0b0b0;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .newsletter-hero-content .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .newsletter-hero-content .stat-item {
            text-align: center;
            padding: 1.5rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .newsletter-hero-content .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .newsletter-hero-content .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: bold;
            color: #00d4ff;
            margin-bottom: 0.25rem;
        }

        .newsletter-hero-content .stat-label {
            color: #b0b0b0;
            font-size: 0.85rem;
        }

        .newsletter-hero-content .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, #00d4ff, #00aaff);
            color: #000;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
        }

        .newsletter-hero-content .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
        }

        /* Section Container */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #00d4ff;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #b0b0b0;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Benefits Section */
        #benefits-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .benefit-card:nth-child(1) { animation-delay: 0.1s; }
        .benefit-card:nth-child(2) { animation-delay: 0.2s; }
        .benefit-card:nth-child(3) { animation-delay: 0.3s; }
        .benefit-card:nth-child(4) { animation-delay: 0.4s; }
        .benefit-card:nth-child(5) { animation-delay: 0.5s; }
        .benefit-card:nth-child(6) { animation-delay: 0.6s; }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #00d4ff, #00aaff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: #000;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
        }

        .benefit-card h3 {
            color: #00d4ff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .benefit-card p {
            color: #b0b0b0;
            line-height: 1.6;
            margin: 0;
        }

        /* Featured Newsletter Section */
        #featured-newsletter {
            padding: 6rem 0;
        }

        .featured-card {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.05));
            border-radius: 30px;
            padding: 3rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .featured-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .featured-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: linear-gradient(45deg, #00d4ff, #00aaff);
            color: #000;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }

        .featured-badge i {
            margin-right: 0.5rem;
        }

        .featured-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .featured-text .issue-date {
            color: #00d4ff;
            font-weight: 600;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .featured-text h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #00d4ff;
        }

        .featured-text > p {
            color: #b0b0b0;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .featured-highlights {
            margin-bottom: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            color: #e0e0e0;
        }

        .highlight-item i {
            color: #00d4ff;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: rgba(0, 212, 255, 0.1);
            color: #00d4ff;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            background: linear-gradient(45deg, #00d4ff, #00aaff);
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
        }

        .featured-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-container {
            position: relative;
            width: 200px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-container i {
            font-size: 4rem;
            color: #00d4ff;
            z-index: 1;
        }

        .visual-ring {
            position: absolute;
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 50%;
            animation: pulse-ring 3s ease-in-out infinite;
        }

        .ring-1 {
            width: 100%;
            height: 100%;
            animation-delay: 0s;
        }

        .ring-2 {
            width: 140px;
            height: 140px;
            animation-delay: 1s;
        }

        .ring-3 {
            width: 80px;
            height: 80px;
            animation-delay: 2s;
        }

        @keyframes pulse-ring {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        /* Subscribe Section */
        #subscribe {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9));
        }

        .subscribe-card {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 30px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .subscribe-visual {
            position: relative;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .subscribe-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .sub-shape {
            position: absolute;
            border-radius: 50%;
        }

        .sub-shape.shape-1 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), transparent);
            top: 0;
            left: 20%;
        }

        .sub-shape.shape-2 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(255, 119, 198, 0.15), transparent);
            bottom: 10%;
            right: 10%;
        }

        .sub-shape.shape-3 {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(120, 219, 255, 0.2), transparent);
            top: 40%;
            left: 50%;
        }

        .subscribe-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #00d4ff, #00aaff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #000;
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
            animation: float 4s ease-in-out infinite;
            z-index: 1;
        }

        .subscribe-form-container h2 {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            color: #00d4ff;
        }

        .subscribe-form-container > p {
            color: #b0b0b0;
            margin-bottom: 2rem;
        }

        #newsletter-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        #newsletter-form .form-group {
            margin-bottom: 1.25rem;
        }

        #newsletter-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: #00d4ff;
            font-weight: 500;
        }

        #newsletter-form label i {
            margin-right: 0.5rem;
        }

        #newsletter-form input[type="text"],
        #newsletter-form input[type="email"] {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: #e0e0e0;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        #newsletter-form input[type="text"]:focus,
        #newsletter-form input[type="email"]:focus {
            outline: none;
            border-color: #00d4ff;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        #newsletter-form input::placeholder {
            color: #888;
        }

        .checkbox-group {
            margin-top: 0.5rem;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        .checkbox-label input {
            display: none;
        }

        .checkmark {
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            margin-right: 0.75rem;
            position: relative;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .checkbox-label input:checked + .checkmark {
            background: linear-gradient(45deg, #00d4ff, #00aaff);
            border-color: #00d4ff;
        }

        .checkbox-label input:checked + .checkmark::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #000;
            font-weight: bold;
            font-size: 0.7rem;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(45deg, #00d4ff, #00aaff);
            color: #000;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
        }

        .privacy-note {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #888;
        }

        .privacy-note i {
            color: #00d4ff;
            margin-right: 0.5rem;
        }

        /* Recent Newsletters Section */
        #recent-newsletters {
            padding: 6rem 0;
        }

        .newsletters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .newsletter-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .newsletter-card:nth-child(1) { animation-delay: 0.1s; }
        .newsletter-card:nth-child(2) { animation-delay: 0.2s; }
        .newsletter-card:nth-child(3) { animation-delay: 0.3s; }
        .newsletter-card:nth-child(4) { animation-delay: 0.4s; }

        .newsletter-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .newsletter-image {
            height: 150px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 170, 255, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .newsletter-image i {
            font-size: 3rem;
            color: #00d4ff;
            opacity: 0.8;
        }

        .newsletter-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(45deg, #00d4ff, #00aaff);
            color: #000;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .newsletter-content {
            padding: 1.5rem;
        }

        .newsletter-date {
            color: #00d4ff;
            font-size: 0.85rem;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
        }

        .newsletter-content h3 {
            color: #e0e0e0;
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .newsletter-content p {
            color: #b0b0b0;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .newsletter-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #00d4ff;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .newsletter-link:hover {
            gap: 0.75rem;
        }

        /* Testimonials Section */
        #testimonials {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
            border-color: rgba(0, 212, 255, 0.2);
        }

        .testimonial-content {
            margin-bottom: 1.5rem;
        }

        .testimonial-content i {
            color: #00d4ff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: block;
            opacity: 0.7;
        }

        .testimonial-content p {
            color: #e0e0e0;
            line-height: 1.7;
            font-style: italic;
            margin: 0;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d4ff, #00aaff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: #00d4ff;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .author-info span {
            color: #b0b0b0;
            font-size: 0.85rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .featured-content {
                grid-template-columns: 1fr;
            }

            .subscribe-card {
                grid-template-columns: 1fr;
            }

            .subscribe-visual {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .newsletter-hero-content .hero-title {
                font-size: 2.5rem;
            }

            .newsletter-hero-content .hero-subtitle {
                font-size: 1.1rem;
            }

            .newsletter-hero-content .hero-stats {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .newsletter-hero-content .stat-item {
                width: 100%;
                max-width: 200px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .featured-card {
                padding: 2rem;
            }

            .subscribe-card {
                padding: 2rem;
            }

            #newsletter-form .form-row {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            #newsletter-hero {
                padding: 7rem 1rem 3rem;
            }

            .newsletter-hero-content .hero-title {
                font-size: 2rem;
            }

            .newsletter-hero-content .cta-button {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }

            .section-container {
                padding: 0 1rem;
            }

            .featured-text h2 {
                font-size: 1.5rem;
            }

            .newsletters-grid {
                grid-template-columns: 1fr;
            }
        }
    

