/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-dark: #222;
    --text-light: #121314;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-light: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Optimistic Display', Medium, Helvetica, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #FDFCFB;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 10px 45px 10px 16px;
    border: 1px solid #374151;
    border-radius: 0;
    background-color: #F5F3FF;
    color: #F5F3FF;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #374151;
}

.search-input:focus {
    outline: none;
    border-color: black;
    background-color: #374151;
}
.search-input:focus .search-button {
    color: #F5F3FF;
}
.search-input:focus::placeholder {
    color: #FDFCFB;
}

.search-button {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-button:hover {
    color: black;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid var(--border-color);
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: var(--bg-light);
}

.search-result-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.search-result-excerpt {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.search-result-category {
    display: inline-block;
    font-size: 11px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 8px;
}

.search-result-item mark {
    background-color: #fef08a;
    color: var(--text-dark);
    padding: 2px 4px;
    border-radius: 2px;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo img {
    height: 40px;
    width: auto;
}

.tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: black;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: #111827;
}

.hero-featured {
    display: flex;
    flex-direction: column;
}

.hero-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.hero-date {
    font-size: 13px;
    color: white;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    transition: text-decoration 0.3s ease;
}

.hero-featured:hover .hero-title {
    text-decoration: underline;
}

.hero-excerpt {
    font-size: 18px;
    color: white;
    line-height: 1.8;
}

.category-badge {
    display: inline-block;
    background-color: #000;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

/* Latest News */
.latest-news {
    padding: 80px 0;
    background-color: #FDFCFB;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.news-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.news-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
    transition: text-decoration 0.3s ease;
}

.news-card:hover .news-title {
    text-decoration: underline;
}

.news-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: #6B7280;
}

.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #FDFCFB;
    margin-bottom: 12px;
}

.category-description-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.category-description {
    font-size: 16px;
    color: #FDFCFB;
    max-width: 700px;
    margin: 0;
}

.category-nav-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.category-slider {
    position: relative;
}

.category-articles-wrapper {
    flex: 1;
    overflow: hidden;
}

.category-articles {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.category-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.category-nav-btn {
    background-color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-nav-btn svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.category-nav-btn:hover svg {
    stroke: #111827;
    transform: scale(1.1);
}

.category-nav-btn:active {
    transform: scale(0.95);
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.category-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.category-card-link:hover .category-card-content h3 {
    text-decoration: underline;
}

.category-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-content {
    display: flex;
    flex-direction: column;
}

.category-card-date {
    font-size: 13px;
    color: #FDFCFB;
    margin-bottom: 12px;
}

.category-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FDFCFB;
    line-height: 1.3;
    flex: 1;
    transition: text-decoration 0.3s ease;
}

.category-card:hover .category-card-content h3 {
    text-decoration: underline;
}

.category-card-content p {
    font-size: 14px;
    color: #FDFCFB;
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: #000;
    color: white;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-button {
    padding: 14px 32px;
    background-color: #FDFCFB;
    color: #374151;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color .3s, color .3s;
    font-family: inherit;
}

.newsletter-button:hover {
    background-color: #374151;
    color: #FDFCFB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-message {
    min-height: 24px;
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.newsletter-message-success {
    color: #4ade80;
    font-weight: 500;
}

.newsletter-message-error {
    color: #f87171;
    font-weight: 500;
}

.newsletter-privacy {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 8px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

.about-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Policy Section */
.policy-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.policy-updated {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.policy-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.policy-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

.policy-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 16px;
}

.policy-subheading {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 16px;
    margin-bottom: 12px;
}

.policy-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-list {
    margin-left: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-contact {
    list-style: none;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-contact li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-contact strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-contact a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.policy-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 0;
}

.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-dark);
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #374151;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    padding: 14px 32px;
    background-color: #374151;
    color: white;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: inherit;
    align-self: flex-start;
    border: 1px solid transparent;
}

.form-submit:hover {
    color: #374151;
    background-color: #FDFCFB;
    transform: translateY(-2px);
    border: 1px solid #374151;
}

.form-submit:active {
    transform: translateY(0);
}

/* Blog Article Styles */
.blog-article {
    background-color: #FDFCFB;
}

.breadcrumbs {
    padding: 30px 0 20px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    padding: 40px;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumbs a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #374151;
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 8px;
    color: var(--text-light);
}

.blog-header-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.blog-header {
    max-width: 900px;
    padding: 40px;
    background-color: var(--bg-white);
}

.blog-category {
    display: inline-block;
    padding: 8px 16px;
    background-color: #000;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: left;
}

.blog-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--text-light);
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.blog-content {
    max-width: 100%;
    padding-bottom: 60px;
}

.blog-intro {
    font-size: 22px;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid #374151;
}

.blog-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 60px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.blog-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 45px;
    margin-bottom: 18px;
}

.blog-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 24px;
}

.blog-image-wrapper {
    margin: 50px 0;
    position: relative;
}

.blog-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border-color);
}

.blog-image-caption {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
    text-align: left;
    padding-left: 20px;
    border-left: 3px solid #374151;
    background-color: var(--bg-light);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--bg-light);
    padding: 24px;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.sidebar-info-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-info-item:last-child {
    border-bottom: none;
}

.sidebar-info-label {
    color: var(--text-light);
    font-weight: 500;
}

.sidebar-info-value {
    color: var(--text-dark);
    font-weight: 600;
}

/* Related Articles */
.related-articles {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 40px;
    border-top: 1px solid var(--border-color);
}

.related-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.related-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    display: flex;
    flex-direction: column;
}

.related-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.related-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
    transition: text-decoration 0.3s ease;
}

.related-card:hover .related-content h3 {
    text-decoration: underline;
}

.related-content h3 a {
    color: inherit;
    text-decoration: none;
}

.related-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    position: relative;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: black;
    transform: translateY(-2px);
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.3s ease;
}
.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-contact strong {
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        align-items: center;
        text-align: center;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-excerpt {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .category-title {
        font-size: 26px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .blog-hero-image {
        height: 350px;
        margin-bottom: 40px;
    }

    .blog-header {
        padding: 30px 20px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .blog-content h2 {
        font-size: 28px;
    }

    .blog-intro {
        font-size: 18px;
        padding: 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .policy-title {
        font-size: 36px;
    }

    .policy-subtitle {
        font-size: 24px;
    }

    .policy-subheading {
        font-size: 18px;
    }

    .policy-intro {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .latest-news-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-excerpt {
        font-size: 16px;
    }

    .category-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 250px;
    }

    .category-description-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .category-nav-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .category-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .category-nav-btn svg {
        width: 24px;
        height: 24px;
    }
}
