/* Base Styles */
:root {
    --primary: #1a365d;
    --primary-light: #2b6cb0;
    --secondary: #2d3748;
    --accent: #3182ce;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #ffffff;
    --bg-secondary: #f7fafc;
    --border: #e2e8f0;
    --success: #38a169;
    --warning: #d69e2e;
    --danger: #e53e3e;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 0.375rem;
    --transition: all 0.2s ease-in-out;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary: #2b6cb0;
    --primary-light: #4299e1;
    --secondary: #4a5568;
    --accent: #63b3ed;
    --text: #e2e8f0;
    --text-light: #a0aec0;
    --bg: #1a202c;
    --bg-secondary: #2d3748;
    --border: #4a5568;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff; /* Ensure h1 is white */
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: white;
}

/* Header Styles */
:root {
    --header-height: 70px;
    --nav-link-padding: 0.75rem 1rem;
    --nav-link-radius: 6px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .header {
    background-color: rgba(26, 32, 44, 0.85);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Source Serif Pro', serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: translateX(2px);
}

.logo i {
    font-size: 1.2em;
    color: var(--accent);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    padding: var(--nav-link-padding);
    border-radius: var(--nav-link-radius);
    transition: all 0.2s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--accent);
    background-color: rgba(49, 130, 206, 0.1);
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 60%;
    background-color: var(--accent);
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.theme-toggle:hover {
    background-color: var(--bg-secondary);
    transform: rotate(15deg);
}

.theme-toggle .moon,
.theme-toggle .sun {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-theme="light"] .theme-toggle .moon {
    opacity: 1;
    transform: scale(1);
}

[data-theme="light"] .theme-toggle .sun {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
    position: absolute;
}

[data-theme="dark"] .theme-toggle .moon {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
    position: absolute;
}

[data-theme="dark"] .theme-toggle .sun {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* Mobile menu button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: var(--bg-secondary);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0.25rem;
    }
    
    .nav-links a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--bg);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        padding: 0.8rem 1.5rem;
        border-radius: 0;
        display: block;
    }
    
    .nav-links a::after {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Featured Report */
.featured-report {
    position: relative;
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.featured-report::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"></path></svg>');
    opacity: 0.5;
    background-size: 30px 30px;
}

.featured-report .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    border-radius: 3px;
}

.report-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.report-image-container {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.report-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.report-card:hover .report-image-container img {
    transform: scale(1.03);
}

.report-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.report-content {
    padding: 2rem;
}

.report-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.report-category {
    color: var(--accent);
    font-weight: 500;
}

.report-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.report-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.report-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.report-content .btn i {
    transition: transform 0.3s ease;
}

.report-content .btn:hover i {
    transform: translateX(3px);
}

@media (min-width: 992px) {
    .report-card {
        flex-direction: row;
        max-height: 400px;
    }
    
    .report-image-container {
        flex: 0 0 50%;
        height: auto;
    }
    
    .report-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .featured-report {
        padding: 4rem 0;
    }
    
    .report-content h3 {
        font-size: 1.5rem;
    }
    
    .report-image-container {
        height: 250px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

/* Base Report Card */
.report-card {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

/* Featured Report Card */
.report-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg));
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.report-card.featured .report-card-image img {
    height: 220px;
    object-fit: cover;
}

.report-card.featured .report-card-content {
    padding: 1.5rem;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

/* Hover Effects */
.report-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.report-card.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.report-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.report-content {
    padding: 2rem;
}

.report-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.report-tag {
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.report-rating {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.report-rating.buy {
    background-color: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

.report-rating.strong-buy {
    background-color: rgba(56, 161, 105, 0.2);
    color: #2f855a;
    border: 1px solid rgba(56, 161, 105, 0.3);
}

[data-theme="dark"] .report-rating.strong-buy {
    background-color: rgba(56, 161, 105, 0.3);
    color: #68d391;
    border-color: rgba(104, 211, 145, 0.5);
}

/* Newsletter */
.newsletter {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"></path></svg>');
    opacity: 0.2;
    background-size: 30px 30px;
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-form input::placeholder {
    color: #718096;
    opacity: 0.8;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.2);
}

.newsletter-form .btn {
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border: none;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ff6b6b, #ff7e3d);
}

.newsletter-form .btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .newsletter {
        padding: 4rem 0;
    }
    
    .newsletter h2 {
        font-size: 1.75rem;
    }
    
    .newsletter p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 1.25rem;
        margin: 0 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }
    
    .newsletter-form .btn {
        margin-top: 0.5rem;
    }
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"></path></svg>');
    opacity: 0.5;
    background-size: 30px 30px;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo i {
    color: var(--accent);
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #cbd5e0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #cbd5e0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
    position: relative;
    padding-left: 1.25rem;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.9em;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.contact-info i {
    color: var(--accent);
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: white;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    font-size: 0.9rem;
    position: relative;
}

.copyright a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
        text-align: center;
    }
    
    .footer-about {
        max-width: 100%;
        margin: 0 auto 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li::before {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info i {
        margin: 0 0 0.5rem 0;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Dark Mode Toggle */
.dark-mode .moon { display: none; }
.dark-mode .sun { display: inline; }
.sun { display: none; }

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"></path></svg>');
    opacity: 0.3;
    background-size: 20px 20px;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-shape .shape-fill {
    fill: var(--bg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cta-buttons .btn i {
    font-size: 1.1em;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-buttons .btn:active {
    transform: translateY(1px);
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 8rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
.dark-mode .moon { display: inline; }
