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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #6b46c1;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #e6d6ff;
    text-decoration: underline;
}

.cookie-btn {
    background: white;
    color: #6b46c1;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: #f3f0ff;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid #e2e8f0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #6b46c1;
    text-transform: none;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6b46c1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6b46c1;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-checkbox {
    display: none;
}

.burger-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}

.burger-line {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #6b46c1;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-line:nth-child(3) {
    bottom: 0;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(2) {
    transform: scale(0);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background-image: url('images/UniswapExchangeGuide-structured-protocol-core.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #6b46c1;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.cta-button:hover {
    background: #553c9a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 50px;
}

.section-description {
    font-size: 1.1rem;
    color: #718096;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background-image: url('images/UniswapExchangeGuide-open-source-architecture.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

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

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.about-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 30px;
    display: block;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-link {
    display: inline-block;
    margin-top: 20px;
    color: #6b46c1;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #6b46c1;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.about-link:hover {
    color: #553c9a;
    border-bottom-color: #553c9a;
}


/* News Section */
.news {
    padding: 100px 0;
    background-image: url('images/UniswapExchangeGuide-liquidity-visualization.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 250, 252, 0.85);
    z-index: 1;
}

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

.news-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.news-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.8;
}

.news-link {
    display: inline-block;
    background: #6b46c1;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link:hover {
    background: #553c9a;
    transform: translateY(-2px);
}

/* Security Section */
.security {
    padding: 100px 0;
    background-image: url('images/UniswapExchangeGuide-clean-network-structure.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.security-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

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

.certificates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.certificate-item {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    border-color: #6b46c1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
}

.certificate-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.certificate-item h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.certificate-item p {
    color: #718096;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .cta-button {
    background: white;
    color: #6b46c1;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta .cta-button:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.contact-info p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-details {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b46c1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #6b46c1;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #553c9a;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card h4 {
    color: #6b46c1;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f7fafc;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e6d6ff;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #e6d6ff;
}

.copyright {
    color: #a0aec0;
    font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 900px) {
    .burger-label {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 998;
        overflow-y: auto;
    }
    
    .burger-checkbox:checked ~ .nav {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 120px 40px 40px;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        color: #2d3748;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .hero,
    .about,
    .news,
    .security,
    .vision,
    .recent-articles {
        background-attachment: scroll;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .certificates {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Remove spacing on mobile */
    .hero,
    .about,
    .news,
    .security,
    .cta,
    .contact,
    .testimonials,
    .faq {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .section-description {
        margin-bottom: 40px;
    }
    
    .about-text p,
    .news-content p,
    .section-description {
        font-size: 1rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .about-link,
    .news-link {
        font-size: 0.9rem;
    }
    
    .certificate-item {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Prevent scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #6b46c1;
    outline-offset: 2px;
}

/* Legal Pages Styles */
.legal-content {
    padding: 140px 0 80px;
    min-height: 80vh;
}

.legal-header {
    margin-bottom: 50px;
}

.back-link {
    display: inline-block;
    color: #6b46c1;
    text-decoration: none;
    margin-bottom: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #553c9a;
}

.legal-text h2 {
    color: #2d3748;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.legal-text h3 {
    color: #4a5568;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.legal-text p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    color: #4a5568;
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-text li {
    margin-bottom: 12px;
}

/* About Us Page Styles */
/* Hero on about-us page uses different background */
body:has(.about) .hero {
    background-image: url('images/UniswapExchangeGuide-open-source-architecture.webp');
}

.vision {
    padding: 100px 0;
    background-image: url('images/UniswapExchangeGuide-clean-network-structure.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 250, 252, 0.85);
    z-index: 1;
}

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

.vision-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vision-item {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.vision-item h3 {
    color: #6b46c1;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.vision-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #6b46c1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
}

.member-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: #6b46c1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 auto;
}

.team-member h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.member-role {
    color: #6b46c1;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: #f7fafc;
}

.values-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-item h3 {
    color: #6b46c1;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.achievement-item {
    padding: 30px 20px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #e6d6ff;
}

.achievement-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* News Page Styles */
/* Hero on news page uses different background */
body:has(.featured-article) .hero {
    background-image: url('images/UniswapExchangeGuide-structured-protocol-core.webp');
}

.featured-article {
    padding: 100px 0;
    background: white;
}

.featured-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.article-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 30px;
    display: block;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.article-date {
    color: #718096;
    font-size: 0.9rem;
}

.article-category {
    background: #6b46c1;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-title {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-excerpt {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.article-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.recent-articles {
    padding: 100px 0;
    background-image: url('images/UniswapExchangeGuide-liquidity-visualization.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.recent-articles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 250, 252, 0.85);
    z-index: 1;
}

.recent-articles .container {
    position: relative;
    z-index: 2;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.article-card-icon {
    font-size: 3rem;
    text-align: center;
    padding: 30px 0 10px;
    display: block;
}

.article-card-content {
    padding: 30px;
}

.article-card-title {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-card-excerpt {
    color: #4a5568;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-card-text {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-top: 40px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-btn {
    background: white;
    color: #6b46c1;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* Mobile Styles for New Sections */
@media (max-width: 900px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .legal-content {
        padding: 120px 0 60px;
    }
}

@media (max-width: 600px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}