/* General Styles */
html, body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #0a1428;
    color: #fff;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 40, 0.4);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 40, 0.2);
    z-index: -2;
    pointer-events: none;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-size: cover;
    }
    
    body::before {
        position: absolute;
    }
    
    body::after {
        position: absolute;
    }
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    margin-left: -120px;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ccc;
}

.admin-link {
    background: rgba(52, 152, 219, 0.5);
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    transition: background 0.3s;
}

.admin-link:hover {
    background: rgba(52, 152, 219, 0.8) !important;
    color: #fff !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 768px) {
    nav {
        padding-right: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    nav .logo {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    nav ul {
        display: flex !important;
        position: static;
        background: none;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
        z-index: auto;
        backdrop-filter: none;
        margin-left: 0;
        justify-content: center;
        gap: 8px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav a {
        font-size: 0.85rem;
        padding: 4px 8px;
    }
    
    .article-modal-header {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        position: fixed;
        top: 0;
        width: 100%;
        padding: 12px 15px;
        gap: 10px;
        z-index: 2001;
    }
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 10rem 2rem 4rem;
    margin-top: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
    padding: 4rem 2rem;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Service Cards */
.service-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.card {
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

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

.card:hover {
    transform: translateY(-5px);
}

.service-cta {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0.6));
    color: #fff;
    padding: 0.7rem 1.3rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.service-cta:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 1), rgba(52, 152, 219, 0.8));
    transform: scale(1.05);
}

/* Articles Container */
.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.article-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

/* Articles Section */
#articles {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
    border-radius: 10px;
    display: block !important;
}

#articles h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #fff;
}

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

.article-cta {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0.6));
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.article-cta:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 1), rgba(52, 152, 219, 0.8));
    transform: scale(1.05);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    -webkit-backdrop-filter: blur(10px);
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form input, form textarea {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: sans-serif;
}

form input::placeholder, form textarea::placeholder {
    color: #ccc;
}

form-webkit-backdrop-filter: blur(5px);
     button {
    background-color: rgba(52, 152, 219, 0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 1rem;
}

form button:hover {
    background-color: rgba(52, 152, 219, 0.9);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    #hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
    
    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .card {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .card p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Article Modal Styles - Full Page Experience */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #0a1428;
    display: flex;
    flex-direction: column;
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    backdrop-filter: blur(20px);
    animation: fadeIn 0.3s ease-out;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}
    
.article-modal::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 40, 0.5);
    z-index: -1;
    pointer-events: none;
}

/* Sticky Header for Article Navigation */
.article-modal-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 2001;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

#modalArticlePageTitle {
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.article-nav-controls {
    display: flex;
    gap: 10px;
}

.article-nav-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.article-nav-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.article-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}
    
.article-modal-content {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 900px;
    width: 100%;
    max-height: calc(100vh - 80px);
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    color: white;
    position: relative;
    margin: 0 auto;
    animation: slideUp 0.4s ease-out;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
}

/* Responsive for Tablet */
@media (max-width: 1024px) {
    .article-modal-content {
        max-width: 850px;
        padding: 60px 50px;
    }
    
    #modalArticleTitle {
        font-size: 40px;
    }
    
    #modalArticleImage {
        height: 350px;
    }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .article-modal {
        align-items: stretch;
        padding-top: 0;
    }
    
    .article-modal-header {
        padding: 10px;
        gap: 6px;
        flex-wrap: wrap;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 2001;
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
    }
    
    .article-modal-header button:first-child {
        order: -1;
        flex: 0 0 auto;
    }
    
    #modalArticlePageTitle {
        flex: 1 1 100%;
        font-size: 16px;
        order: 3;
    }
    
    .article-nav-controls {
        flex: 0 0 auto;
        gap: 6px;
        order: 1;
        display: flex !important;
    }
    
    .article-nav-btn {
        padding: 6px 10px;
        font-size: 11px;
        display: block !important;
    }
    
    .article-modal-content {
        max-width: 100%;
        width: 100%;
        padding: 60px 10px 20px 10px;
        max-height: none;
        height: auto;
        margin: 0;
        border-radius: 0;
        overflow-y: auto;
        box-sizing: border-box;
    }
    
    .article-modal-close {
        display: none;
    }
    
    #modalArticleTitle {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    #modalArticleImage {
        height: 220px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    #modalArticleContent {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    #modalArticleLink,
    #modalCTAButton,
    #modalPDFButton {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    #modalArticleButtons {
        flex-direction: column;
        gap: 10px;
    }
    
    #modalArticleLink,
    #modalCTAButton,
    #modalPDFButton {
        width: 100%;
        text-align: center;
    }
    
    .article-meta {
        font-size: 12px;
        gap: 15px;
    }
}

/* Responsive for Small Mobile */
@media (max-width: 480px) {
    .article-modal-header {
        padding: 10px 10px;
        gap: 8px;
    }
    
    #modalArticlePageTitle {
        font-size: 16px;
    }
    
    .article-nav-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .article-modal-content {
        padding: 70px 12px 20px 12px;
        border-radius: 0;
    }
    
    .article-modal-close {
        display: none;
    }
    
    #modalArticleTitle {
        font-size: 22px;
    }
    
    #modalArticleImage {
        height: 200px;
        margin-bottom: 15px;
    }
    
    #modalArticleContent {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    #modalArticleContent h1 { font-size: 20px; }
    #modalArticleContent h2 { font-size: 18px; }
    #modalArticleContent h3 { font-size: 16px; }
    
    #modalArticleLink,
    #modalCTAButton,
    #modalPDFButton {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .article-meta {
        font-size: 11px;
        gap: 10px;
    }
    
    nav {
        padding-right: 15px;
    }
    
    nav ul {
        margin-left: 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
}

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

.article-modal-close {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.article-modal-close:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

#modalArticleImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    display: block;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: imageSlideIn 0.5s ease-out;
}

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

#modalArticleTitle {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

#modalArticleContent {
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
}

/* Improve Quill content styling */
#modalArticleContent p {
    margin: 15px 0;
    line-height: 1.8;
}

#modalArticleContent strong {
    font-weight: 700;
    color: #ffffff;
}

#modalArticleContent em {
    font-style: italic;
}

#modalArticleContent ul, #modalArticleContent ol {
    margin: 20px 0;
    padding-left: 30px;
}

#modalArticleContent li {
    margin: 10px 0;
}

#modalArticleContent h1, #modalArticleContent h2, #modalArticleContent h3 {
    margin: 25px 0 15px 0;
    color: #ffffff;
    font-weight: 700;
}

#modalArticleContent h1 { font-size: 28px; }
#modalArticleContent h2 { font-size: 24px; }
#modalArticleContent h3 { font-size: 20px; }

#modalArticleContent code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

#modalArticleContent blockquote {
    border-left: 4px solid rgba(52, 152, 219, 0.7);
    padding-left: 15px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}


/* Inline styles moved to CSS */
#modalArticleButtons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#modalArticleLink {
    display: none;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.7), rgba(41, 128, 185, 0.7));
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.5);
    backdrop-filter: blur(10px);
    font-size: 15px;
}

#modalArticleLink:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 1), rgba(41, 128, 185, 1));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.5);
    border-color: rgba(52, 152, 219, 0.8);
}

#modalCTAButton {
    display: none;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.7), rgba(39, 174, 96, 0.7));
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 204, 113, 0.5);
    backdrop-filter: blur(10px);
    font-size: 15px;
}

#modalCTAButton:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 1), rgba(39, 174, 96, 1));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.5);
    border-color: rgba(46, 204, 113, 0.8);
}

#modalPDFButton {
    display: none;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.7), rgba(211, 84, 0, 0.7));
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 126, 34, 0.5);
    backdrop-filter: blur(10px);
    font-size: 15px;
}

#modalPDFButton:hover {
    background: linear-gradient(135deg, rgba(230, 126, 34, 1), rgba(211, 84, 0, 1));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.5);
    border-color: rgba(230, 126, 34, 0.8);
}

#testSeriesSection {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    display: none;
}

#testSeriesSection h3 {
    text-align: center;
    margin-bottom: 30px;
}

#submitQuizBtn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#quizResult {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: none;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

#sponsored-posts-container p {
    text-align: center;
    color: #fff;
    margin: 2rem 0;
}

.newsletter-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-section h3 {
    margin-bottom: 20px;
}

.newsletter-section p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

#newsletter-form {
    display: flex;
    gap: 10px;
}

#newsletterEmail {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
}

#newsletterMessage {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

#newsletter-form button {
    padding: 12px 25px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
