/* Base Styles */
:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #4f74f9;
    --secondary-color: #ff6b6b;
    --secondary-dark: #e05c5c;
    --dark-color: #0d1b2a;
    --dark-medium: #1b263b;
    --text-color: #333;
    --text-light: #666;
    --light-color: #f8f9fa;
    --gray-color: #dee2e6;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.6rem;
}

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

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

ul, ol {
    margin-bottom: 1.6rem;
    padding-left: 2.4rem;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.6rem 2.4rem;
    margin: 2.4rem 0;
    background-color: rgba(67, 97, 238, 0.05);
    border-radius: var(--border-radius);
}

blockquote p {
    font-style: italic;
    margin-bottom: 0.8rem;
}

blockquote cite {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: normal;
    display: block;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4.8rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 8rem;
    height: 0.4rem;
    background-color: var(--primary-color);
    margin: 1.6rem auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
    font-size: 1.6rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.secondary-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-dark);
}

.outline-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--gray-color);
}

.outline-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.full-width {
    width: 100%;
}

.center-btn {
    text-align: center;
    margin-top: 3.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin-top: 2.4rem;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.6rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 4.8rem;
    width: auto;
}

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

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.8rem 0;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0.05) 100%);
    padding: 10rem 0;
}

.hero-content {
    max-width: 60rem;
}

.hero-content h1 {
    margin-bottom: 2.4rem;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
    color: var(--text-light);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4.8rem;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
    background-color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3.2rem;
}

.feature-card {
    background-color: white;
    padding: 3.2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 6.4rem;
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 2.4rem;
}

.feature-card h3 {
    margin-bottom: 1.6rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Daily Picks Section */
.daily-picks {
    background-color: #f8f9fa;
}

.picks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.4rem;
}

.pick-card {
    background-color: white;
    padding: 2.4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pick-card h3 {
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.pick-card p {
    margin-bottom: 0;
}

/* Quote of the Day */
.quote-of-day {
    background-color: var(--dark-medium);
    color: white;
    text-align: center;
    padding: 6.4rem 0;
}

.quote-of-day blockquote {
    max-width: 80rem;
    margin: 0 auto;
    border-left: none;
    background: none;
    padding: 0;
}

.quote-of-day blockquote p {
    font-size: 2.4rem;
    font-style: italic;
    margin-bottom: 1.6rem;
}

.quote-of-day blockquote cite {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
}

/* Recent Posts */
.recent-posts {
    background-color: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.2rem;
    margin-bottom: 3.2rem;
}

.post-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.post-image {
    position: relative;
    overflow: hidden;
    height: 20rem;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2.4rem;
}

.post-content h3 {
    margin-bottom: 1.2rem;
    font-size: 2rem;
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 1.6rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:after {
    content: '→';
    margin-left: 0.8rem;
    transition: var(--transition);
}

.read-more:hover:after {
    transform: translateX(4px);
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
}

.testimonial-slider {
    max-width: 90rem;
    margin: 0 auto;
}

.testimonial {
    padding: 2rem;
}

.testimonial-content {
    background-color: white;
    padding: 3.2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    line-height: 1;
    color: rgba(67, 97, 238, 0.1);
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2.4rem;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.client-info img {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin-bottom: 0.4rem;
    font-size: 1.8rem;
}

.client-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 1.4rem;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0.05) 100%);
    padding: 8rem 0;
    text-align: center;
}

.blog-hero h1 {
    margin-bottom: 1.6rem;
}

.blog-hero p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin: 0 auto;
    color: var(--text-light);
}

.blog-content {
    padding: 8rem 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .blog-card {
        flex-direction: row;
    }
    
    .blog-image {
        flex: 0 0 40%;
    }
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-image {
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-text {
    padding: 2.4rem;
}

.blog-meta {
    display: flex;
    gap: 1.6rem;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.blog-text h2 {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
}

.blog-text p {
    margin-bottom: 2.4rem;
    color: var(--text-light);
}

/* Newsletter */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    padding: 6.4rem 0;
}

.newsletter-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1.6rem;
}

.newsletter-content p {
    margin-bottom: 3.2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1.6rem;
    max-width: 54rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.6rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-family: var(--font-primary);
}

.newsletter-form .btn {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
}

/* Blog Post Page */
.blog-post {
    padding: 8rem 0;
}

.post-header {
    margin-bottom: 4.8rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-title {
    margin-bottom: 3.2rem;
}

.post-featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 4rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content h2 {
    margin-top: 4rem;
}

.post-content h3 {
    margin-top: 3.2rem;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 2.4rem;
}

.post-content li {
    margin-bottom: 0.8rem;
}

.image-with-caption {
    margin: 3.2rem 0;
}

.image-with-caption img {
    width: 100%;
    border-radius: var(--border-radius);
}

.caption {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-top: 1.2rem;
}

.post-footer {
    margin-top: 4.8rem;
    padding-top: 3.2rem;
    border-top: 1px solid var(--gray-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.4rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.social-share {
    display: flex;
    gap: 0.8rem;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    transition: var(--transition);
}

.social-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Related Posts */
.related-posts {
    background-color: #f8f9fa;
    padding: 8rem 0;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.2rem;
}

.related-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-post img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.related-post h3 {
    font-size: 1.8rem;
    margin: 2rem 2rem 1rem;
}

.related-post p {
    margin: 0 2rem 1.6rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

.related-post .read-more {
    margin: 0 2rem 2rem;
    display: inline-block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.6rem;
}

.cta-content p {
    margin-bottom: 3.2rem;
    opacity: 0.9;
}

.cta-buttons {
    justify-content: center;
}

.cta-buttons .secondary-btn {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0.05) 100%);
    padding: 8rem 0;
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1.6rem;
}

.about-hero p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin: 0 auto;
    color: var(--text-light);
}

.about-story {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.about-content h2 {
    margin-bottom: 2.4rem;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-mission {
    background-color: #f8f9fa;
    padding: 8rem 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.2rem;
}

@media (min-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-box, .vision-box {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-box h2, .vision-box h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.mission-box p, .vision-box p {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.team-section {
    padding: 8rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3.2rem;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-member h3 {
    margin: 2rem 2rem 0.5rem;
}

.team-member p {
    margin: 0.5rem 2rem;
    color: var(--text-light);
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.6rem 0 2rem;
}

.team-member .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    transition: var(--transition);
}

.team-member .social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.values-section {
    background-color: #f8f9fa;
    padding: 8rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3.2rem;
}

.value-card {
    background-color: white;
    padding: 3.2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 2.4rem;
}

.value-card h3 {
    margin-bottom: 1.6rem;
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.stats-section {
    padding: 8rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3.2rem;
}

.stat-card {
    text-align: center;
    background-color: white;
    padding: 3.2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.8rem;
}

/* Login Page */
.login-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

@media (min-width: 992px) {
    .login-container {
        grid-template-columns: 1fr 1fr;
    }
}

.login-image {
    display: none;
}

@media (min-width: 992px) {
    .login-image {
        display: block;
    }
    
    .login-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.login-form-container {
    padding: 4rem;
}

.login-header {
    text-align: center;
    margin-bottom: 3.2rem;
}

.login-header h1 {
    margin-bottom: 1.2rem;
}

.login-header p {
    color: var(--text-light);
}

.form-group {
    margin-bottom: 2.4rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.input-with-icon {
    position: relative;
}

.input-with-icon svg {
    position: absolute;
    top: 50%;
    left: 1.6rem;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-with-icon input {
    padding-left: 4.8rem;
}

input, select, textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.4rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.remember-me input[type="checkbox"] {
    width: auto;
}

.forgot-password {
    font-size: 1.4rem;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 2.4rem 0;
}

.login-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gray-color);
}

.login-divider span {
    position: relative;
    background-color: white;
    padding: 0 1.6rem;
    color: var(--text-light);
}

.social-login {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
}

@media (min-width: 576px) {
    .social-login {
        grid-template-columns: 1fr 1fr;
    }
}

.google-btn, .microsoft-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: white;
    border: 1px solid var(--gray-color);
    color: var(--text-color);
}

.google-btn:hover, .microsoft-btn:hover {
    background-color: #f8f9fa;
}

.signup-prompt {
    text-align: center;
    margin-top: 2.4rem;
}

.signup-prompt p {
    margin-bottom: 0;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0.05) 100%);
    padding: 8rem 0;
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 1.6rem;
}

.contact-hero p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin: 0 auto;
    color: var(--text-light);
}

.contact-section {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.contact-card {
    display: flex;
    gap: 1.6rem;
    background-color: white;
    padding: 2.4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 4.8rem;
    height: 4.8rem;
    min-width: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
}

.contact-details h3 {
    margin-bottom: 0.8rem;
}

.contact-details p {
    margin-bottom: 0.4rem;
    color: var(--text-light);
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-social {
    background-color: white;
    padding: 2.4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-social h3 {
    margin-bottom: 1.6rem;
}

.contact-social .social-icons {
    display: flex;
    gap: 1.2rem;
}

.contact-form-container {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 3.2rem;
    text-align: center;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.4rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

textarea {
    resize: vertical;
    min-height: 12rem;
}

.map-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    padding: 8rem 0;
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.6rem;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: white;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.faq-toggle {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 50rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    max-width: 50rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 4rem;
    text-align: center;
}

.success-icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--success-color);
    border-radius: 50%;
    margin: 0 auto 2.4rem;
}

.modal-body h2 {
    margin-bottom: 1.6rem;
}

.modal-body p {
    margin-bottom: 2.4rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 8rem 0 0;
}

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

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 4.8rem;
    width: auto;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.4rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

address {
    font-style: normal;
}

address p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

address svg {
    margin-top: 0.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 2.4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

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

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1.6rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
}

.cookie-policy {
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-image {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        top: 8rem;
        height: calc(100vh - 8rem);
        width: 25rem;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 5rem;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.nav-active {
        transform: translateX(0);
    }
    
    .burger {
        display: block;
    }
    
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.toggle .line2 {
        opacity: 0;
    }
    
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 6rem 0;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .feature-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .post-footer {
        flex-direction: column;
    }
    
    .login-form-container,
    .contact-form-container {
        padding: 2.4rem;
    }
}
