/* Base Styles and Variables */
:root {
    --primary-color: #2961ff;
    --primary-dark: #1e4fd8;
    --primary-light: #e4eaff;
    --secondary-color: #3a4a64;
    --accent-color: #0abde3;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #eef2f7;
    --border-color: #e1e5eb;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

/* Reset and Basic Typography */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px if browser default is 16px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.6rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

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;
}

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

button, .btn {
    cursor: pointer;
    font-family: inherit;
    font-size: 1.6rem;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1.2rem 2.4rem;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2.4rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: 0.8rem;
}

.mt-2 {
    margin-top: 1.6rem;
}

.mt-3 {
    margin-top: 2.4rem;
}

.mt-4 {
    margin-top: 3.2rem;
}

.mt-5 {
    margin-top: 4.8rem;
}

.mb-1 {
    margin-bottom: 0.8rem;
}

.mb-2 {
    margin-bottom: 1.6rem;
}

.mb-3 {
    margin-bottom: 2.4rem;
}

.mb-4 {
    margin-bottom: 3.2rem;
}

.mb-5 {
    margin-bottom: 4.8rem;
}

.visible {
    display: block;
}

.hidden {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    text-align: center;
    font-weight: 600;
}

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

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

.secondary-btn {
    background-color: var(--bg-light);
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.secondary-btn:hover {
    background-color: var(--bg-dark);
    color: var(--secondary-color);
}

.tertiary-btn {
    background-color: transparent;
    color: var(--text-color);
    text-decoration: underline;
    padding: 1.2rem 1.6rem;
}

.tertiary-btn:hover {
    color: var(--primary-color);
    background-color: rgba(41, 97, 255, 0.05);
}

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

/* Header and Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 1.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 2.2rem;
}

.logo img {
    height: 4.5rem;
    width: auto;
    margin-right: 1.2rem;
}

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

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

.nav-links li {
    margin-left: 3.2rem;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.6rem;
    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: width 0.3s ease;
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 2.4rem;
    width: 3.2rem;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--primary-light);
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 4.8rem;
    margin-bottom: 1.6rem;
    color: var(--secondary-color);
}

.hero p {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 3.2rem;
    max-width: 76.8rem;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 8rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 3.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card .icon {
    background-color: var(--primary-light);
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.4rem;
}

.feature-card .icon svg {
    width: 3.2rem;
    height: 3.2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

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

/* Latest Posts Section */
.latest-posts {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 3.2rem;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.post-image {
    height: 22.5rem;
    overflow: hidden;
}

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

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

.post-content {
    padding: 2.4rem;
}

.post-meta {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}

.post-meta .category {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 0.8rem;
}

.post-meta .date {
    margin-left: auto;
}

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

.read-more {
    display: inline-block;
    margin-top: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Beginners Guide Section */
.beginners-guide {
    padding: 8rem 0;
}

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

.guide-content {
    flex: 1;
}

.guide-image {
    flex: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.guide-features {
    margin: 3.2rem 0;
}

.guide-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.4rem;
}

.guide-feature:last-child {
    margin-bottom: 0;
}

.guide-feature .icon {
    background-color: var(--primary-light);
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.6rem;
    flex-shrink: 0;
}

.guide-feature .icon svg {
    width: 2.4rem;
    height: 2.4rem;
    color: var(--primary-color);
}

.guide-feature h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

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

/* Facts Section */
.facts-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.facts-section h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

.facts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3.2rem;
}

.fact-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 3.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.fact-number {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}

.fact-card h3 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
    padding-right: 3.2rem;
}

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

/* Newsletter Section */
.newsletter {
    padding: 8rem 0;
    text-align: center;
    background-color: white;
}

.newsletter h2 {
    margin-bottom: 1.2rem;
}

.newsletter p {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    margin-bottom: 3.2rem;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1.2rem 1.6rem;
    font-size: 1.6rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.form-notice {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 6.4rem 0 3.2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 4.8rem;
}

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

.footer-logo img {
    height: 6.4rem;
    width: auto;
    margin-bottom: 1.6rem;
}

.footer-logo p {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    max-width: 30rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4.8rem;
}

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

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 1.2rem;
}

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

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

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

.contact-info svg {
    width: 2rem;
    height: 2rem;
    margin-right: 1.2rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.social-icons svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.6rem 0 0;
    font-size: 1.4rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    padding: 2.4rem;
    z-index: 1000;
    display: none;
    justify-content: center;
    border-top: 1px solid var(--border-color);
}

.cookie-content {
    max-width: 120rem;
    text-align: center;
}

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

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

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

/* Page Header */
.page-header {
    background-color: var(--primary-light);
    padding: 8rem 0 6.4rem;
    text-align: center;
}

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

.page-header p {
    color: var(--text-light);
    max-width: 76.8rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
}

/* Blog Filters */
.blog-filters {
    padding: 3.2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.filter-group label {
    font-weight: 600;
}

.filter-group select {
    padding: 0.8rem 1.6rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1.6rem;
    background-color: white;
}

.search-box {
    margin-left: auto;
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.search-box input {
    padding: 0.8rem 1.6rem;
    font-size: 1.6rem;
    border: none;
    outline: none;
    width: 28rem;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button svg {
    width: 2rem;
    height: 2rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
}

.tags span {
    font-weight: 600;
    color: var(--text-color);
}

.tag {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 1.4rem;
    padding: 0.4rem 1.2rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

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

/* Blog Posts */
.blog-posts {
    padding: 6.4rem 0;
}

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

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.pagination a, .pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
}

.pagination a {
    background-color: var(--bg-light);
    color: var(--text-color);
}

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

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

.pagination .next {
    width: auto;
    padding: 0 1.6rem;
}

/* Beginners Section */
.beginners-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 76.8rem;
    margin: 0 auto 4.8rem;
}

.beginners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3.2rem;
}

.beginner-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 3.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
}

.beginner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.beginner-icon {
    background-color: var(--primary-light);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2.4rem;
}

.beginner-icon svg {
    width: 4rem;
    height: 4rem;
    color: var(--primary-color);
}

.beginner-card h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

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

.beginner-link {
    font-weight: 600;
    color: var(--primary-color);
}

/* About Story Section */
.about-story {
    padding: 8rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4.8rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Mission & Values Section */
.mission-values {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

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

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

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.value-icon svg {
    width: 4rem;
    height: 4rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

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

/* Team Section */
.team-section {
    padding: 8rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1.2rem;
}

.team-intro {
    text-align: center;
    max-width: 76.8rem;
    margin: 0 auto 4.8rem;
    color: var(--text-light);
}

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

.team-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-card h3 {
    font-size: 2rem;
    margin: 2.4rem 2.4rem 0.8rem;
}

.team-card p {
    padding: 0 2.4rem;
    margin-bottom: 1.6rem;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    padding: 0 2.4rem 2.4rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    transition: var(--transition);
}

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

.social-links a:hover svg {
    color: white;
}

.social-links svg {
    width: 2rem;
    height: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

/* Partners Section */
.partners-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 1.2rem;
}

.partners-intro {
    text-align: center;
    max-width: 76.8rem;
    margin: 0 auto 4.8rem;
    color: var(--text-light);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.partner-logo {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    max-width: 18rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--primary-light);
}

.cta-section h2 {
    margin-bottom: 1.2rem;
}

.cta-section p {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    margin-bottom: 3.2rem;
}

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

/* Contact Section */
.contact-section {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 6.4rem;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 2.4rem;
}

.contact-icon {
    background-color: var(--primary-light);
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.6rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 3.2rem;
    height: 3.2rem;
    color: var(--primary-color);
}

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

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

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

.contact-details a {
    color: var(--primary-color);
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-connect {
    margin-top: 2.4rem;
}

.social-connect h3 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
}

.contact-note {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 3.2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

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

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

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

.contact-form .required {
    color: var(--error-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    font-size: 1.6rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(41, 97, 255, 0.2);
}

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

.checkbox-group input {
    width: auto;
    margin-right: 1.2rem;
    margin-top: 0.4rem;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    font-size: 1.4rem;
}

.contact-form button {
    margin-top: 1.6rem;
}

/* Map Section */
.map-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

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

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 3.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

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

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

.modal-content {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 4.8rem;
    text-align: center;
    max-width: 48rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    font-size: 2.8rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-icon {
    background-color: var(--primary-light);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2.4rem;
}

.modal-icon svg {
    width: 4rem;
    height: 4rem;
    color: var(--success-color);
}

.modal-content h2 {
    margin-bottom: 1.2rem;
}

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

.modal-content .close-btn {
    min-width: 12rem;
}

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

.post-header {
    max-width: 80rem;
    margin: 0 auto 4.8rem;
    text-align: center;
}

.blog-post .post-meta {
    justify-content: center;
    gap: 1.6rem;
}

.blog-post h1 {
    font-size: 4.2rem;
    margin-bottom: 1.6rem;
}

.post-description {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 3.2rem;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 50%;
    margin-right: 1.6rem;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.author-title {
    color: var(--text-light);
    margin: 0;
}

.blog-post .post-image {
    max-width: 120rem;
    height: auto;
    margin: 0 auto 4.8rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.post-content {
    max-width: 80rem;
    margin: 0 auto 4.8rem;
}

.post-content h2 {
    font-size: 3rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-content h3 {
    font-size: 2.4rem;
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
}

.post-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.post-image-small {
    margin: 3.2rem 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2.4rem;
    margin: 3.2rem 0;
    font-style: italic;
    color: var(--secondary-color);
}

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

.post-tags {
    max-width: 80rem;
    margin: 0 auto 2.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
}

.post-tags span {
    font-weight: 600;
}

.post-share {
    max-width: 80rem;
    margin: 0 auto 4.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.post-share span {
    font-weight: 600;
}

.post-share a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    transition: var(--transition);
}

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

.post-share a:hover svg {
    color: white;
}

.post-share svg {
    width: 2rem;
    height: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.post-navigation {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 3.2rem;
}

.prev-post, .next-post {
    max-width: 45%;
}

.prev-post a, .next-post a {
    color: var(--text-color);
}

.prev-post span, .next-post span {
    display: block;
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.prev-post p, .next-post p {
    font-weight: 600;
    margin: 0;
}

.next-post {
    text-align: right;
}

.related-posts {
    background-color: var(--bg-light);
    padding: 8rem 0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 4.8rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 3.2rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    h1 {
        font-size: 3.8rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .hero h1 {
        font-size: 4.2rem;
    }
    
    .beginners-guide .container {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .fact-card {
        padding: 2.4rem;
    }
    
    .blog-post h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 3.4rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 7.7rem;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2.4rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease-in-out;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links li {
        margin: 1.2rem 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: var(--border-radius-md);
        margin-bottom: 1.2rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius-md);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        margin: 1.6rem 0 0;
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 2.4rem;
    }
    
    .prev-post, .next-post {
        max-width: 100%;
    }
    
    .next-post {
        text-align: left;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.6rem;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .post-grid, .feature-grid, .facts-container, .values-grid, .beginners-grid, .posts-grid, .team-grid, .related-grid {
        grid-template-columns: 1fr;
    }
    
    .hero, .page-header {
        padding: 6.4rem 0;
    }
    
    .features, .latest-posts, .beginners-guide, .facts-section, .newsletter, .blog-posts, .beginners-section, .about-story, .mission-values, .team-section, .partners-section, .cta-section, .contact-section, .map-section, .faq-section, .related-posts {
        padding: 6.4rem 0;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    
    .post-meta .date {
        margin-left: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        margin-bottom: 1.6rem;
        justify-content: center;
    }
    
    .cookie-content {
        padding: 1.6rem;
    }
    
    .blog-post .post-meta {
        flex-direction: row;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1, .hero p, .hero .btn {
    animation: fadeIn 0.6s ease-out;
}

.hero p {
    animation-delay: 0.2s;
}

.hero .btn {
    animation-delay: 0.4s;
}

/* Print Styles */
@media print {
    header, footer, .newsletter, .related-posts, .cookie-consent {
        display: none;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .blog-post {
        padding: 0;
    }
    
    .post-content {
        max-width: 100%;
    }
    
    a {
        color: var(--text-color);
        text-decoration: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 24pt;
    }
    
    h2 {
        font-size: 20pt;
    }
    
    h3 {
        font-size: 16pt;
    }
}
