/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header and Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a73e8;
}

.auth-buttons .btn-login {
    padding: 0.6rem 1.2rem;
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.auth-buttons .btn-login:hover {
    background: #0d5bbd;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #666;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #1a73e8;
}

/* Hero Section */
.hero {
    padding: 10rem 5% 6rem;
    text-align: center;
    background: linear-gradient(135deg, #f8faff 0%, #e9f1ff 100%);
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #0d5bbd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: #fff;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #1a73e8;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f0f7ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
}

.btn-tertiary {
    padding: 1rem 2rem;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.btn-tertiary:hover {
    color: #1a73e8;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.features h3 {
    text-align: center;
    color: #555;
    margin-bottom: 4rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    padding: 2.5rem;
    background: #f8faff;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid #e9f1ff;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.15);
}

.feature-card h4 {
    margin-bottom: 1.2rem;
    color: #1a73e8;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.view-details {
    display: inline-block;
    margin-top: 1rem;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.view-details:hover {
    color: #0d5bbd;
    text-decoration: underline;
}

/* About Page Styles */
.about-hero {
    padding: 10rem 5% 6rem;
    text-align: center;
    background: linear-gradient(135deg, #f8faff 0%, #e9f1ff 100%);
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-text p {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.testimonial {
    background: #f8faff;
    padding: 3rem;
    border-radius: 8px;
    margin: 4rem 0;
    position: relative;
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.1);
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1a73e8;
    text-align: right;
    font-style: italic;
}

.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.15);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 4px solid #f8faff;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member p {
    color: #666;
    font-size: 1rem;
}

/* Responsive Styles for About Page */
@media (max-width: 1200px) {
    .about-grid {
        gap: 3rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 1rem 4rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 4rem 1rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .testimonial p {
        font-size: 1.1rem;
    }
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: #f8faff;
    text-align: center;
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.about h3 {
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.about p {
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    padding: 6rem 5%;
    background: #1a73e8;
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.cta p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.feature {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.feature h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature p {
    opacity: 0.9;
    margin: 0;
    font-size: 1rem;
}

/* Blog Section */
.blog {
    padding: 6rem 5%;
    background: #fff;
}

.blog h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.blog h3 {
    text-align: center;
    color: #555;
    margin-bottom: 4rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: #f8faff;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid #e9f1ff;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.15);
}

.blog-card .date,
.blog-card .category {
    display: inline-block;
    color: #666;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.blog-card h4 {
    margin: 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
}

.read-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 1rem;
}

.read-more:hover {
    color: #0d5bbd;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 6rem 5% 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-brand p {
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .feature-grid, .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .social-icons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .main-nav.active .logo {
        z-index: 1001;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-content, .footer-links {
        grid-template-columns: 1fr;
    }
    
    .features h2, .about h2, .blog h2, .cta h2 {
        font-size: 2.2rem;
    }
    
    .features h3, .about h3, .blog h3, .cta h3 {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 32px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .feature-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 28px;
    }
}

/* Mission and Vision Section */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.mission, .vision {
    padding: 3rem;
    background: #f8faff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.1);
}

.mission h2, .vision h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a73e8;
    font-weight: 700;
}

.mission p, .vision p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.values {
    text-align: center;
}

.values h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-card {
    padding: 3rem 2rem;
    background: #f8faff;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.15);
}

.value-card i {
    font-size: 3rem;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.value-card p {
    color: #555;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .about-grid, .mission-vision {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-text h2, .values h2 {
        font-size: 2.2rem;
    }
    
    .mission h2, .vision h2 {
        font-size: 1.8rem;
    }
}

/* How It Works Page Styles */
.how-it-works-hero {
    padding: 10rem 5% 6rem;
    text-align: center;
    background: linear-gradient(135deg, #f8faff 0%, #e9f1ff 100%);
}

.how-it-works-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.how-it-works-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.process-steps {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.3);
}

.step-content {
    background: #f8faff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.1);
}

.step-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a73e8;
    font-weight: 700;
}

.step-content p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.step-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.features-detail {
    padding: 6rem 5%;
    background: #f8faff;
    text-align: center;
}

.features-detail h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.15);
}

.feature-item i {
    font-size: 3rem;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.feature-item p {
    color: #555;
    font-size: 1rem;
}

.cta-section {
    padding: 6rem 5%;
    text-align: center;
    background: #1a73e8;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    margin-bottom: 3rem;
    font-size: 1.3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 992px) {
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 2rem;
    }
    
    .how-it-works-hero h1, .cta-section h2, .features-detail h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-hero h1, .cta-section h2, .features-detail h2 {
        font-size: 2.5rem;
    }
    
    .step-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .how-it-works-hero p, .cta-section p {
        font-size: 1.1rem;
    }
}

/* Additional Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 3rem;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #555;
}

.close-button:hover {
    color: #1a73e8;
}

/* Channel Icons Section */
.channel-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.channel-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8faff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.1);
    transition: all 0.3s;
}

.channel-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
}

.channel-icon img {
    max-width: 50px;
    max-height: 50px;
}

/* Blog Page Styles */
.blog-hero {
    padding: 10rem 5% 6rem;
    text-align: center;
    background: linear-gradient(135deg, #f8faff 0%, #e9f1ff 100%);
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.blog-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.blog-content {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.15);
}

.blog-post-image {
    height: 240px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-details {
    padding: 2rem;
}

.blog-post-details span {
    color: #666;
    font-size: 0.9rem;
}

.blog-post-details h2 {
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.blog-post-details p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-number, .pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8faff;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-number.active {
    background: #1a73e8;
    color: #fff;
}

.pagination-number:hover, .pagination-arrow:hover {
    background: #e9f1ff;
    color: #1a73e8;
}

.pagination-number.active:hover {
    background: #1a73e8;
    color: #fff;
}

@media (max-width: 992px) {
    .blog-post-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
    }
    
    .blog-post-details h2 {
        font-size: 1.3rem;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8faff 0%, #e9f1ff 100%);
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-hero p {
    font-size: 1.2rem;
    color: #555;
}

.pricing-plans {
    padding: 4rem 5%;
    background: #fff;
}

.plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #1a73e8;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    border: 2px solid #1a73e8;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #1a73e8;
    font-weight: 700;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .period {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.plan-features i {
    color: #1a73e8;
}

.pricing-faq {
    padding: 4rem 5%;
    background: #f8faff;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Responsive styles for pricing page */
@media (max-width: 992px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 6rem 5% 3rem;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .pricing-hero h1 {
        font-size: 1.8rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 10rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8faff 0%, #e9f1ff 100%);
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: #f8faff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e9f1ff;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #1a73e8;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.info-item p {
    color: #555;
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.map-section {
    padding: 5rem 5%;
    background: #f8faff;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-item i {
        margin-bottom: 1rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .auth-buttons {
        display: none;
    }

    .social-icons {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .main-nav.active .logo {
        z-index: 1001;
    }
} 