/* Global Variables */
:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #27ae60;
    --secondary-dark: #219955;
    --tertiary-color: #e67e22;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #f0f0f0;
    --border-color: #dddddd;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --border-radius: 5px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

/* Typography */
html {
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

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: 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

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

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

.hero-content {
    flex: 1;
    padding-right: 4rem;
}

.hero-content h2 {
    margin-bottom: 2rem;
    font-size: 3.6rem;
}

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

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Benefits Section */
.webinar-details {
    padding: 8rem 0;
    background-color: var(--background-color);
}

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

.benefit-card {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.benefit-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.benefit-card h3 {
    margin-bottom: 1.5rem;
}

/* Statistics Section */
.statistics {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 4rem;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

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

/* Topics Section */
.topics {
    padding: 8rem 0;
    background-color: var(--background-color);
}

.topics-list {
    margin-top: 4rem;
}

.topic {
    display: flex;
    margin-bottom: 3rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.topic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 2.5rem;
}

.topic-content {
    padding: 2.5rem;
    flex: 1;
}

.topic-content h3 {
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.testimonials-slider {
    margin-top: 4rem;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 3rem;
    padding-bottom: 2rem;
}

.testimonial {
    min-width: 300px;
    flex: 1;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    scroll-snap-align: start;
}

.quote {
    position: relative;
    margin-bottom: 2rem;
}

.quote i {
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 2rem;
}

.quote .fa-quote-left {
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.quote .fa-quote-right {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
}

.quote p {
    position: relative;
    z-index: 1;
}

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

.author img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

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

/* Registration Section */
.registration {
    padding: 8rem 0;
    background-color: var(--background-color);
}

.registration .container {
    display: flex;
    align-items: flex-start;
}

.registration-content {
    flex: 1;
    padding-right: 4rem;
}

.registration-form {
    flex: 1;
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.webinar-info {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.webinar-info li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.webinar-info li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.8rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

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

.form-group.checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

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

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

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

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

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

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

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

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

.read-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.see-all-posts {
    text-align: center;
    margin-top: 4rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: white;
}

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

.cta-content h2,
.cta-content p {
    color: white;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

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

.cta .btn.primary:hover {
    background-color: var(--background-light);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding-top: 6rem;
}

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

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

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
    color: white;
    margin-bottom: 2rem;
}

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

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

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

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1001;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-content a {
    font-size: 1.4rem;
}

/* Page Banner */
.page-banner {
    background-color: var(--background-light);
    padding: 6rem 0;
    text-align: center;
}

.page-banner h2 {
    margin-bottom: 1.5rem;
}

.page-banner p {
    font-size: 1.8rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-content {
    padding: 6rem 0;
}

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

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

.blog-post {
    display: flex;
    flex-direction: column;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-post .post-image {
    height: 300px;
}

.blog-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post .post-content {
    padding: 3rem;
}

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

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 0.5rem;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
}

.sidebar-widget h3 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 1.5rem;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.category-list a:hover {
    color: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.popular-post {
    display: flex;
    gap: 1.5rem;
}

.popular-post-image {
    flex: 0 0 80px;
}

.popular-post-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.popular-post-content {
    flex: 1;
}

.popular-post-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.popular-post-content .post-date {
    font-size: 1.3rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-form input {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1.6rem;
}

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

.tags a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--background-dark);
    border-radius: 3rem;
    color: var(--text-color);
    font-size: 1.4rem;
    transition: var(--transition);
}

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

/* Single Blog Post */
.blog-post-single {
    padding: 6rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

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

.post-content h3 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-content h4 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content img {
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

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

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--background-light);
    border-radius: 3rem;
    font-size: 1.4rem;
}

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

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

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

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

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.prev-post i {
    margin-right: 0.8rem;
}

.next-post i {
    margin-left: 0.8rem;
}

.prev-post h4, .next-post h4 {
    margin-bottom: 0;
    transition: var(--transition);
}

.prev-post a:hover h4, .next-post a:hover h4 {
    color: var(--primary-color);
}

.related-posts {
    margin-top: 6rem;
}

.related-posts h3 {
    margin-bottom: 3rem;
    text-align: center;
}

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

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

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

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

.related-post h4 {
    padding: 1.5rem;
    margin-bottom: 0;
    font-size: 1.6rem;
}

.author-box {
    display: flex;
    align-items: center;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-top: 5rem;
}

.author-image {
    flex: 0 0 100px;
    margin-right: 2.5rem;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 1rem;
}

.info-box, .warning-box, .tip-box, .example-box {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.info-box {
    background-color: rgba(52, 152, 219, 0.1);
    border-left: 4px solid var(--primary-color);
}

.warning-box {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--error-color);
}

.tip-box {
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--success-color);
}

.example-box {
    background-color: rgba(230, 126, 34, 0.1);
    border-left: 4px solid var(--tertiary-color);
}

.info-box h4, .warning-box h4, .tip-box h4, .example-box h4 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-box h4 i, .warning-box h4 i, .tip-box h4 i, .example-box h4 i {
    margin-right: 1rem;
}

/* App Box Styles for Blog Post 2 */
.app-box {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    overflow: hidden;
}

.app-info {
    display: flex;
    padding: 2rem;
    background-color: rgba(52, 152, 219, 0.1);
}

.app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 3rem;
    border-radius: 1.5rem;
    margin-right: 2rem;
}

.app-details {
    flex: 1;
}

.app-details h4 {
    margin-bottom: 1rem;
}

.app-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.app-rating i {
    color: #f1c40f;
    margin-right: 0.3rem;
}

.app-rating span {
    margin-left: 1rem;
    font-weight: 600;
}

.app-description {
    padding: 2rem;
}

.app-description h5 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Age Group Box Styles for Blog Post 4 */
.age-group-box {
    display: flex;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    overflow: hidden;
}

.age-group-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 3rem;
}

.age-group-content {
    padding: 2.5rem;
    flex: 1;
}

.age-group-content ul {
    margin-bottom: 0;
}

/* Saving Tip Styles for Blog Post 5 */
.saving-tip {
    display: flex;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    overflow: hidden;
}

.saving-tip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 3rem;
}

.saving-tip-content {
    padding: 2.5rem;
    flex: 1;
}

.saving-tip-content p:last-child {
    margin-bottom: 0;
}

.stat-box {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    text-align: center;
}

.stat-box h4 {
    margin-bottom: 1.5rem;
}

.stat-box p {
    margin-bottom: 0;
    font-size: 1.8rem;
}

/* About Webinar Page Styles */
.about-webinar {
    padding: 6rem 0;
}

.webinar-intro {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.webinar-intro-content {
    flex: 1;
}

.webinar-intro-image {
    flex: 1;
}

.webinar-intro-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.webinar-schedule {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 13px;
    top: 15px;
    z-index: 1;
}

.timeline-content {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content .time {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.timeline-content h3 {
    margin-bottom: 1rem;
}

.speakers {
    padding: 6rem 0;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.speaker-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.speaker-info {
    padding: 2.5rem;
}

.speaker-info h3 {
    margin-bottom: 0.5rem;
}

.position {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

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

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

.detail-card {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.detail-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.detail-card h3 {
    margin-bottom: 1.5rem;
}

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

.faq-preview {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}

.accordion-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
}

.accordion-header h3, .accordion-header h4 {
    margin-bottom: 0;
}

.accordion-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--background-light);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    background-color: var(--primary-color);
    color: white;
}

.accordion-item.active .accordion-icon i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.more-faq {
    text-align: center;
    margin-top: 4rem;
}

/* FAQ Page Styles */
.faq-content {
    padding: 6rem 0;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1.5rem 5rem 1.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 5rem;
    font-size: 1.6rem;
}

.search-box button {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
}

.faq-categories {
    margin-bottom: 4rem;
}

.faq-categories ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 1rem;
}

.faq-categories ul li a {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 3rem;
    background-color: var(--background-light);
    color: var(--text-color);
    transition: var(--transition);
}

.faq-categories ul li a:hover,
.faq-categories ul li a.active {
    background-color: var(--primary-color);
    color: white;
}

.faq-section {
    margin-bottom: 6rem;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.not-found-answer {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.not-found-answer h3 {
    margin-bottom: 1.5rem;
}

.not-found-answer p {
    margin-bottom: 2.5rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 6rem 0;
}

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

.contact-info {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.info-item {
    display: flex;
    margin-bottom: 3rem;
}

.info-icon {
    flex: 0 0 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    margin-right: 2rem;
}

.info-content h4 {
    margin-bottom: 0.8rem;
}

.info-content p {
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 1.4rem;
    color: var(--text-light);
}

.social-contact {
    margin-top: 4rem;
}

.social-contact h4 {
    margin-bottom: 1.5rem;
}

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

.contact-form-container h3 {
    margin-bottom: 1.5rem;
}

.contact-form-container p {
    margin-bottom: 3rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--background-color);
    margin: 15% auto;
    padding: 3rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
}

.thankyou-message {
    text-align: center;
}

.thankyou-message i {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thankyou-message h3 {
    margin-bottom: 1.5rem;
}

.thankyou-message p {
    margin-bottom: 3rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 60%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    .hero .container,
    .registration .container,
    .webinar-intro {
        flex-direction: column;
    }
    
    .hero-content,
    .registration-content,
    .webinar-intro-content {
        padding-right: 0;
        margin-bottom: 4rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--background-color);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1001;
        padding: 2rem;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        margin-top: 5rem;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 2.5rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .topic,
    .saving-tip,
    .age-group-box {
        flex-direction: column;
    }
    
    .topic-icon,
    .saving-tip-icon,
    .age-group-icon {
        width: 100%;
        height: 8rem;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 3rem;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 2rem;
    }
    
    .post-tags, .post-share {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 2rem;
    }
    
    .prev-post, .next-post {
        max-width: 100%;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .app-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .app-icon {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .faq-categories ul li a {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 54%;
    }
    
    .hero-content h2,
    .page-banner h2 {
        font-size: 2.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .modal-content {
        width: 90%;
        padding: 2rem;
    }
}
