/* Base Styles */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #f72585;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --gray-color: #6c757d;
    --success-color: #4bb543;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

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

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

/* Header Styles */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo img {
    height: 40px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 12px;
}

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

.main-nav a.btn {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: var(--dark-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 100px 0 150px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
}

.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    fill: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.section-subheader {
    text-align: center;
    margin-bottom: 30px;
}

.section-subheader h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-features svg {
    fill: var(--primary-color);
    margin-right: 10px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-icon svg {
    fill: var(--primary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.service-link {
    font-weight: 600;
    display: inline-block;
}

.service-link:after {
    content: ' →';
}

.services-image {
    text-align: center;
    margin-top: 50px;
}

.services-image img {
    max-width: 600px;
    margin: 0 auto;
}

/* Subscription Section */
.subscription-content {
    margin-bottom: 60px;
}

.subscription-image {
    text-align: center;
    margin-bottom: 50px;
}

.subscription-image img {
    max-width: 500px;
    margin: 0 auto;
}

.subscription-plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    max-width: 350px;
    position: relative;
}

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

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.plan-price .currency {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 5px;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--gray-color);
    margin-top: 5px;
    margin-left: 5px;
}

.plan-price .custom-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.subscription-benefits {
    margin-top: 80px;
}

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

.benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-icon svg {
    fill: var(--primary-color);
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Testimonials Section */
.testimonials-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    gap: 30px;
    margin: 0 -15px;
    padding: 30px 15px;
}

.testimonial-card {
    scroll-snap-align: center;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    min-width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
}

.testimonial-content:before,
.testimonial-content:after {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: #e9ecef;
    position: absolute;
    line-height: 1;
}

.testimonial-content:before {
    top: -20px;
    left: -10px;
}

.testimonial-content:after {
    bottom: -40px;
    right: -10px;
    transform: rotate(180deg);
}

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

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

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e9ecef;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-method-icon svg {
    fill: var(--primary-color);
}

.contact-method-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.3);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #212529;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 300px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #adb5bd;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #adb5bd;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #343a40;
    color: #adb5bd;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #343a40;
    transition: var(--transition);
}

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

.footer-social svg {
    fill: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings.hidden {
    display: none;
}

.cookie-settings-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cookie-option label {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.cookie-option p {
    color: var(--gray-color);
    margin-left: 28px;
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

/* Blog Page Styles */
.blog-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.blog-hero-content p {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.blog-categories {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.category-item {
    padding: 8px 20px;
    border-radius: 25px;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.category-item:hover,
.category-item.active {
    background-color: var(--primary-color);
    color: white;
}

.featured-article {
    padding: 80px 0;
}

.featured-article-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.featured-article-image {
    flex: 1;
}

.featured-article-text {
    flex: 1;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.article-category {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-date {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.featured-article-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.featured-article-text p {
    margin-bottom: 25px;
}

.blog-articles {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.blog-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.blog-link {
    font-weight: 600;
}

.blog-link:after {
    content: ' →';
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.pagination-item,
.pagination-dots,
.pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: var(--transition);
}

.pagination-item {
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.pagination-item:hover,
.pagination-item.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.pagination-next svg {
    fill: white;
}

.newsletter-section {
    padding: 80px 0;
    background-color: #f1f3f5;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

/* Single Article Page */
.article-section {
    padding: 60px 0;
}

.article-header {
    margin-bottom: 30px;
}

.article-header .article-meta {
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.article-author {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-left: 15px;
}

.article-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.article-content p,
.article-content ul,
.article-content ol {
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.article-content h3 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.article-content ul,
.article-content ol {
    padding-left: 25px;
}

.article-content ul li,
.article-content ol li {
    margin-bottom: 10px;
}

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.article-image figcaption {
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.article-quote {
    margin: 30px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.article-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
}

.article-quote cite {
    font-style: normal;
    color: var(--gray-color);
}

.article-tip {
    margin: 30px 0;
    padding: 25px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 8px;
}

.article-tip h3 {
    color: var(--primary-color);
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-size: 1.3rem !important;
}

.article-author-bio {
    display: flex;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 40px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
}

.author-info h3 {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.author-info h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.article-share {
    margin-bottom: 60px;
}

.article-share h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
}

.share-button svg {
    fill: white;
    margin-right: 10px;
}

.share-button.facebook {
    background-color: #1877f2;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.linkedin {
    background-color: #0077b5;
}

.share-button.email {
    background-color: #6c757d;
}

.related-articles h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Legal Pages */
.legal-section {
    padding: 60px 0;
}

.legal-header {
    margin-bottom: 50px;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-header p {
    color: var(--gray-color);
}

.legal-content {
    display: flex;
    gap: 50px;
}

.legal-toc {
    flex: 0 0 250px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.legal-toc h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.legal-toc ul {
    list-style-type: none;
}

.legal-toc li {
    margin-bottom: 10px;
}

.legal-toc a {
    color: var(--text-color);
    transition: var(--transition);
}

.legal-toc a:hover {
    color: var(--primary-color);
}

.legal-section-content {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.legal-section-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.legal-section-content p,
.legal-section-content ul,
.legal-section-content ol {
    margin-bottom: 20px;
}

.legal-section-content ul,
.legal-section-content ol {
    padding-left: 25px;
}

.legal-section-content ul li,
.legal-section-content ol li {
    margin-bottom: 10px;
}

.legal-section-content ul {
    list-style-type: disc;
}

.legal-section-content ol {
    list-style-type: decimal;
}

/* Thank You Page */
.thanks-section {
    padding: 100px 0;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    fill: var(--success-color);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gray-color);
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.thanks-image {
    margin-top: 60px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content, 
    .about-content, 
    .featured-article-content, 
    .contact-content, 
    .newsletter-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .hero-image, 
    .about-image,
    .featured-article-image,
    .contact-info,
    .newsletter-text {
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .legal-content {
        flex-direction: column;
    }
    
    .legal-toc {
        position: static;
        width: 100%;
        margin-bottom: 50px;
    }
    
    .testimonial-card {
        min-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        min-width: calc(100% - 20px);
        flex: 0 0 calc(100% - 20px);
    }
    
    .subscription-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-card.featured {
        transform: none;
        order: -1;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .share-button {
        flex: 1 0 calc(50% - 10px);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* Hidden Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 999;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    color: var(--dark-color);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu.show {
    display: block;
}