/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --text: #1a1a1a;
    --muted: #666666;
    --bg: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --container-max: 1280px;
    --container-padding: 24px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    font-size: 16px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.header {
    background-color: var(--bg);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 64px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text);
    text-decoration: underline;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.subscribe-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.subscribe-btn:hover {
    background-color: var(--primary-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

/* Hero Featured Story */
.hero-featured {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 80px 0;
    color: white;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 400;
    max-width: 700px;
}

.hero-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-read-more {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.hero-read-more:hover {
    background-color: var(--primary-hover);
}

/* Latest News Section */
.latest-news {
    padding: 60px 0;
    background-color: var(--bg);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    background-color: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text);
}

.news-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-title a:hover {
    color: var(--primary);
}

.news-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 16px;
    flex: 1;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.news-date {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
}

.news-read-more {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.news-read-more:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.contact-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
    line-height: 1.2;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    max-width: 100%;
}

.contact-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.contact-item-value {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.contact-item-detail {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.contact-address {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    font-style: normal;
    font-family: 'Inter', sans-serif;
}

.contact-form-section {
    max-width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: var(--bg);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background-color: var(--primary-hover);
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.legal-updated {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 48px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    margin-top: 40px;
    line-height: 1.3;
}

.legal-section h2:first-of-type {
    margin-top: 0;
}

.legal-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.legal-section strong {
    font-weight: 600;
    color: var(--text);
}

.legal-address {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    font-style: normal;
    margin: 16px 0;
    font-family: 'Inter', sans-serif;
}

/* Article Pages */
.article-page {
    padding: 40px 0 60px;
    background-color: var(--bg);
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 32px;
}

.article-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-meta {
    font-size: 14px;
    color: var(--muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-date {
    font-weight: 400;
}

.article-featured-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-body {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.article-lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e5e7eb;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-body h2:first-of-type {
    margin-top: 32px;
}

.article-body p {
    margin-bottom: 24px;
    line-height: 1.75;
}

.article-body ul {
    margin-left: 24px;
    margin-bottom: 28px;
    padding-left: 0;
}

.article-body li {
    margin-bottom: 16px;
    line-height: 1.75;
    padding-left: 8px;
}

.article-body strong {
    font-weight: 600;
    color: var(--text);
}

.article-meta-info {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: var(--muted);
    font-style: normal;
}

/* Article Details Card */
.article-details-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-details-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.article-details-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.article-detail-item {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.article-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.article-detail-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    min-width: 100px;
    font-family: 'Inter', sans-serif;
}

.article-detail-value {
    font-size: 14px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

/* Article Newsletter */
.article-newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    padding: 32px;
    margin: 48px 0;
    color: white;
}

.article-newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.article-newsletter-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.article-newsletter-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.article-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 15px;
    background-color: white;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.article-newsletter-form input::placeholder {
    color: var(--muted);
}

.article-newsletter-form button {
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.article-newsletter-form button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.article-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2d2d2d;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-company-name {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.footer-company-name strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.footer-section p strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    margin-top: 8px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.footer-registration {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-accept {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.cookie-accept:hover {
    background-color: var(--primary-hover);
}

/* Subscribe Modal */
.subscribe-modal,
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.subscribe-modal.show,
.thank-you-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background-color: var(--bg);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    background-color: #f3f4f6;
    color: var(--text);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    text-align: center;
}

.modal-description {
    font-size: 16px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
}

.subscription-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.plan-card {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--bg);
}

.plan-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.plan-card {
    display: block;
}

.plan-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-card input[type="radio"]:checked ~ .plan-label {
    color: var(--text);
}

.plan-card:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background-color: rgba(37, 99, 235, 0.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.plan-card.plan-recommended {
    border-color: var(--primary);
    border-width: 3px;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.plan-label {
    display: block;
    cursor: pointer;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.plan-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
}

.plan-savings {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-left: 24px;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.subscribe-form .form-group {
    margin-bottom: 24px;
}

.subscribe-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.subscribe-form .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-form .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.subscribe-submit-btn {
    width: 100%;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.subscribe-submit-btn:hover {
    background-color: var(--primary-hover);
}

/* Thank You Modal */
.thank-you-content {
    text-align: center;
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #10b981;
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-weight: 700;
}

.thank-you-message {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.thank-you-note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.thank-you-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.thank-you-btn:hover {
    background-color: var(--primary-hover);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-accept {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-page-title {
        font-size: 40px;
    }

    .contact-section-title {
        font-size: 28px;
    }

    .subscription-plans {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plan-card.plan-recommended {
        transform: none;
    }

    .modal-content {
        padding: 32px 24px;
        max-width: 95%;
    }

    .modal-title {
        font-size: 28px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
    }

    .header-content {
        padding: 12px 0;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 16px;
        border-top: 1px solid #e5e7eb;
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-featured {
        min-height: 500px;
        margin-bottom: 40px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .latest-news {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-image {
        height: 220px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-text h3 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-accept {
        width: 100%;
        padding: 14px 24px;
    }

    .footer {
        padding: 40px 0 30px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-page {
        padding: 40px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .contact-section-title {
        font-size: 24px;
    }

    .contact-intro {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .contact-item {
        margin-bottom: 24px;
    }

    .subscription-plans {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .plan-card {
        padding: 20px;
    }

    .plan-name {
        font-size: 20px;
    }

    .plan-price {
        font-size: 28px;
    }

    .modal-content {
        padding: 24px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .contact-page-title {
        font-size: 28px;
    }

    .contact-section-title {
        font-size: 22px;
    }

    .news-title {
        font-size: 20px;
    }

    .legal-page {
        padding: 40px 0;
    }

    .legal-title {
        font-size: 36px;
    }

    .legal-section h2 {
        font-size: 28px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .article-page {
        padding: 30px 0 40px;
    }

    .article-content {
        max-width: 100%;
    }

    .article-title {
        font-size: 28px;
    }

    .article-body {
        font-size: 16px;
    }

    .article-body h2 {
        font-size: 24px;
        margin-top: 36px;
    }

    .article-lead {
        font-size: 18px;
    }

    .article-details-card {
        padding: 20px;
    }

    .article-newsletter {
        padding: 24px;
    }

    .article-newsletter-form {
        flex-direction: column;
    }

    .article-newsletter-form input,
    .article-newsletter-form button {
        width: 100%;
    }
}