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

*,
*::before,
*::after {
    box-sizing: inherit
}

html {
    overflow-x: hidden
}

body {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
div,
li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .8rem
}

h1 {
    font-size: 1.5rem
}

h2 {
    font-size: 1.3rem
}

h3 {
    font-size: 1.1rem
}

h4 {
    font-size: 1rem
}

p {
    margin-bottom: 1rem
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s
}

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

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

.header {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #e0e4e8;
    position: sticky;
    top: 0;
    z-index: 100
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d3b66;
}

.nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

.nav.active {
    display: flex
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0
}

.nav li {
    margin: 0;
    padding: 0
}

.header nav ul li a {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #e0e4e8;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease
}

.header nav ul li:last-child a {
    border-bottom: none
}

.header nav ul li a:hover,
.header nav ul li a.active {
    color: #0d3b66;
    padding-left: 10px
}

.nav-link {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    padding: inherit;
    border-bottom: inherit;
    display: inherit;
    text-decoration: inherit
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #1a1a1a;
    cursor: pointer;
    padding: 5px;
    position: relative
}

.menu-toggle .menu-icon,
.menu-toggle .close-icon {
    transition: opacity 0.3s ease;
}

.menu-toggle .close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero {
    background: linear-gradient(135deg, #0d3b66, #1a5490);
    color: #fff;
    padding: 40px 0 35px;
    position: relative;
    overflow: hidden
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .3
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 1rem;
    max-width: fit-content
}

.hero-text h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.2
}

.hero-text p {
    font-size: .95rem;
    opacity: .95;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: block;
    padding: 11px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all .3s;
    border: none;
    cursor: pointer;
    text-align: center;
    max-width: 100%
}

.btn-primary {
    background: #ee964b;
    color: #fff
}

.btn-primary:hover {
    background: #d67d2e
}

.btn-secondary {
    background: transparent;
    color: #0d3b66;
    border: 2px solid #0d3b66
}

.btn-secondary:hover {
    background: #0d3b66;
    color: #fff
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff
}

.btn-outline:hover {
    background: #fff;
    color: #0d3b66
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between
}

.stat-mini {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 70px
}

.stat-mini strong {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.stat-mini span {
    font-size: 11px;
    opacity: .9
}

.hero-visual {
    display: grid;
    gap: 12px
}

.hero-card {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    max-width: 300px
}

.hero-card i {
    font-size: 1.6rem;
    margin-bottom: .6rem;
    color: #ee964b
}

.hero-card h3 {
    font-size: 1rem;
    margin-bottom: .3rem
}

.hero-card p {
    font-size: 12px;
    opacity: .9;
    margin: 0
}

.breaking-news {
    padding: 40px 0;
    background: #fff
}

.breaking-header {
    text-align: center;
    margin-bottom: 2rem
}

.breaking-label {
    display: inline-block;
    background: #ee964b;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: .8rem
}

.breaking-label i {
    margin-right: 5px
}

.breaking-header h2 {
    color: #0d3b66;
    margin: 0
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px
}

.news-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    border: 1px solid #e0e4e8
}

.news-tag {
    display: inline-block;
    background: #0d3b66;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: .8rem;
    letter-spacing: .5px;
    max-width: fit-content
}

.news-card h3 {
    font-size: 1.15rem;
    margin-bottom: .6rem;
    color: #1a1a1a;
    line-height: 1.3
}

.news-date {
    font-size: 12px;
    color: #5a5a5a;
    margin-bottom: .8rem;
    display: block
}

.news-card p {
    color: #5a5a5a;
    font-size: 13px;
    margin-bottom: 1rem;
    line-height: 1.6
}

.read-more {
    color: #0d3b66;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.featured-story {
    padding: 40px 0;
    background: #f4f6f8
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.story-image {
    width: 100%
}

.story-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    width: 100%
}

.story-label {
    display: inline-block;
    background: #ee964b;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: .8rem
}

.story-content h2 {
    color: #0d3b66;
    margin-bottom: 1rem;
    font-size: 1.4rem
}

.story-content p {
    color: #5a5a5a;
    margin-bottom: 1rem;
    line-height: 1.7
}

.expert-insights {
    padding: 40px 0;
    background: #fff
}

.expert-insights h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0d3b66
}

.insights-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.insight-card {
    background: #f4f6f8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ee964b
}

.expert-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem
}

.expert-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0d3b66, #1a5490);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0
}

.expert-info h4 {
    font-size: .95rem;
    margin-bottom: .2rem;
    color: #1a1a1a
}

.expert-info span {
    font-size: 11px;
    color: #5a5a5a
}

.insight-card p {
    color: #5a5a5a;
    font-size: 13px;
    line-height: 1.6;
    font-style: italic;
    margin: 0
}

.trending-topics {
    padding: 40px 0;
    background: #f4f6f8
}

.trending-topics h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0d3b66
}

.topics-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center
}

.topic-tag {
    background: #fff;
    color: #1a1a1a;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e0e4e8
}

.topic-tag i {
    margin-right: 5px;
    color: #ee964b;
    font-size: 10px
}

.categories {
    padding: 40px 0;
    background: #fff
}

.categories h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0d3b66
}

.category-grid {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.category-card {
    background: #f4f6f8;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid transparent
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d3b66, #1a5490);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.category-icon i {
    font-size: 1.5rem;
    color: #fff
}

.category-card h3 {
    margin-bottom: .8rem;
    color: #1a1a1a;
    font-size: 1.1rem
}

.category-card p {
    color: #5a5a5a;
    font-size: 13px;
    margin-bottom: 1.2rem;
    line-height: 1.6
}

.newsletter-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, #0d3b66, #1a5490)
}

.newsletter-box {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    color: #fff
}

.newsletter-text h2 {
    margin-bottom: .8rem;
    color: #fff;
    font-size: 1.3rem
}

.newsletter-text p {
    font-size: .95rem;
    opacity: .95;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.page-hero {
    background: linear-gradient(135deg, #0d3b66, #1a5490);
    color: #fff;
    padding: 35px 0;
    text-align: center
}

.page-hero h1 {
    font-size: 1.6rem;
    margin-bottom: .5rem
}

.page-hero p {
    font-size: .95rem;
    opacity: .95
}

.news-content {
    padding: 40px 0
}

.news-articles {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.article-full {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8ecef;
    transition: all 0.3s ease
}

.article-full:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px)
}

.article-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #0d3b66 0%, #1a5490 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px
}

.article-category i {
    font-size: 10px
}

.article-full h2 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 10px 0
}

.article-date {
    font-size: 13px;
    color: #6c757d;
    font-weight: 400;
    margin: 8px 0 0 0;
    display: block
}

.article-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
    border: none;
    border-radius: 0
}

.article-body {
    padding: 25px;
    line-height: 1.8
}

.article-body p {
    color: #495057;
    font-size: 14px;
    margin: 0 0 16px 0;
    line-height: 1.8
}

.article-body p:last-child {
    margin-bottom: 0
}

.related-topics {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%)
}

.related-topics h2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d3b66;
    margin: 0 0 35px 0;
    line-height: 1.3
}

.topics-grid {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.topic-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #e8ecef;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06)
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 59, 102, 0.15);
    border-color: #0d3b66;
    background: #f8f9ff
}

.topic-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #0d3b66;
    line-height: 1.4;
    transition: color 0.3s ease
}

.topic-card:hover h3 {
    color: #1a5490
}

.topic-card p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6
}

.finance-overview {
    padding: 40px 0;
    background: #f4f6f8
}

.finance-cards {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.finance-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}

.finance-card i {
    font-size: 1.8rem;
    color: #0d3b66;
    margin-bottom: .8rem
}

.finance-card h3 {
    margin-bottom: .8rem;
    font-size: 1.1rem
}

.finance-card p {
    color: #5a5a5a;
    font-size: 13px;
    line-height: 1.6
}

.market-insights {
    padding: 40px 0;
    background: #f4f6f8
}

.market-insights h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0d3b66
}

.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.insight-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}

.insight-item h3 {
    color: #0d3b66;
    margin-bottom: .8rem
}

.insight-item p {
    color: #5a5a5a;
    font-size: 13px;
    line-height: 1.6
}

.contact-intro {
    padding: 30px 0;
    text-align: center
}

.intro-content {
    max-width: 100%
}

.intro-content h2 {
    color: #0d3b66;
    margin-bottom: .8rem
}

.intro-content p {
    color: #5a5a5a;
    font-size: 13px;
    line-height: 1.6
}

.contact-section {
    padding: 30px 0 40px
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.contact-info {
    background: #f4f6f8;
    padding: 20px;
    border-radius: 10px
}

.contact-info h3 {
    color: #0d3b66;
    margin-bottom: 1.2rem
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 1.2rem
}

.info-item i {
    font-size: 1.2rem;
    color: #0d3b66;
    flex-shrink: 0;
    margin-top: 2px
}

.info-item h4 {
    font-size: .9rem;
    margin-bottom: .3rem
}

.info-item p {
    font-size: 12px;
    color: #5a5a5a;
    margin: 0;
    line-height: 1.5
}

.contact-form-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}

.form-group {
    margin-bottom: 1.2rem
}

.form-group label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a1a
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e4e8;
    border-radius: 6px;
    font-family: 'Sora', sans-serif;
    font-size: 13px
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d3b66
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.checkbox-group {
    margin-bottom: 1.2rem
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    cursor: pointer;
    line-height: 1.5
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0
}

.checkbox-label a {
    color: #0d3b66;
    text-decoration: underline
}

.map-section {
    padding: 40px 0;
    background: #f4f6f8
}

.map-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0d3b66
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1)
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 300px
}

.contact-cta {
    padding: 40px 0;
    text-align: center
}

.contact-cta h2 {
    color: #0d3b66;
    margin-bottom: .8rem
}

.contact-cta p {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    font-size: 13px
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.thankyou-section,
.error-section {
    padding: 50px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center
}

.thankyou-content,
.error-content {
    text-align: center;
    max-width: 100%;
    padding: 0 15px
}

.thankyou-icon {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.2rem
}

.thankyou-content h1 {
    color: #0d3b66;
    margin-bottom: .8rem;
    font-size: 1.5rem
}

.thankyou-content p {
    color: #5a5a5a;
    font-size: .95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.error-number {
    font-size: 4rem;
    font-weight: 700;
    color: #0d3b66;
    line-height: 1;
    margin-bottom: 1rem
}

.error-content h1 {
    color: #1a1a1a;
    margin-bottom: .8rem;
    font-size: 1.5rem
}

.error-content p {
    color: #5a5a5a;
    font-size: .95rem;
    margin-bottom: 1.5rem
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem
}

.error-links {
    text-align: left
}

.error-links h3 {
    font-size: 1.1rem;
    margin-bottom: .8rem
}

.error-links a {
    display: block;
    color: #0d3b66;
    margin-bottom: .5rem;
    font-size: 13px
}

.error-links i {
    margin-right: 6px
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 30px 0 15px
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px
}

.footer-col h4 {
    margin-bottom: .8rem;
    font-size: 1rem
}

.footer-col p,
.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    display: block;
    margin-bottom: .4rem;
    line-height: 1.5
}

.footer-col a:hover {
    color: #ee964b
}

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

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .75)
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, .2);
    display: none
}

.privacy-popup.show {
    display: block
}

.privacy-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.privacy-content h3 {
    font-size: 1rem;
    margin-bottom: .4rem
}

.privacy-content p {
    font-size: 12px;
    opacity: .9;
    margin: 0;
    line-height: 1.5
}

.privacy-buttons {
    display: flex;
    gap: 10px
}

.btn-accept,
.btn-learn {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    flex: 1
}

.btn-accept {
    background: #ee964b;
    color: #fff;
    border: none
}

.btn-learn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff
}

.policy-content {
    padding: 40px 0
}

.policy-text {
    max-width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}

.policy-text h2 {
    color: #0d3b66;
    margin-top: 1.5rem;
    margin-bottom: .8rem;
    font-size: 1.2rem
}

.policy-text h3 {
    color: #1a1a1a;
    margin-top: 1rem;
    margin-bottom: .6rem;
    font-size: 1.05rem
}

.policy-text p {
    color: #5a5a5a;
    margin-bottom: .8rem;
    line-height: 1.7;
    font-size: 13px
}

.policy-text ul,
.policy-text ol {
    margin-left: 20px;
    margin-bottom: .8rem
}

.policy-text li {
    color: #5a5a5a;
    margin-bottom: .4rem;
    line-height: 1.6;
    font-size: 13px
}

@media(min-width:480px) {
    body {
        font-size: 15px
    }

    .container {
        padding: 0 20px
    }

    h1 {
        font-size: 1.75rem
    }

    h2 {
        font-size: 1.5rem
    }

    h3 {
        font-size: 1.2rem
    }

    .hero {
        padding: 50px 0 40px
    }

    .hero-text h1 {
        font-size: 1.9rem
    }

    .breaking-news .news-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .category-grid,
    .insights-wrapper,
    .finance-cards,
    .insights-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px
    }

    .related-topics {
        padding: 70px 0
    }

    .related-topics h2 {
        font-size: 1.8rem;
        margin-bottom: 40px
    }

    .topics-grid {
        gap: 25px
    }

    .topic-card {
        padding: 35px 30px
    }

    .topic-card h3 {
        font-size: 1.25rem
    }

    .topic-card p {
        font-size: 14px
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: auto;
        min-width: 200px
    }

    .hero-buttons,
    .thankyou-actions,
    .error-actions,
    .cta-buttons {
        flex-direction: row;
        justify-content: center
    }

    .newsletter-box {
        padding: 35px 25px
    }

    .news-articles {
        gap: 45px
    }

    .article-header {
        padding: 30px 30px 20px
    }

    .article-full h2 {
        font-size: 1.5rem
    }

    .article-body {
        padding: 30px
    }

    .article-body p {
        font-size: 15px
    }

    .policy-text {
        padding: 30px
    }
}

@media(min-width:992px) {
    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.7rem
    }

    h3 {
        font-size: 1.3rem
    }

    .container {
        max-width: 750px
    }

    .nav {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 25px;
        background: transparent;
        justify-content: flex-end;
    }

    .nav ul {
        flex-direction: row;
        gap: 25px;
        width: auto;
        align-items: center
    }

    .nav li {
        width: auto
    }

    .header nav ul li a {
        padding: 10px 0;
        border-bottom: none;
        font-size: 15px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip
    }

    .header nav ul li a:hover,
    .header nav ul li a.active {
        padding-left: 0;
        color: #0d3b66;
        border-bottom: 2px solid #0d3b66
    }

    .menu-toggle {
        display: none
    }

    .hero {
        padding: 80px 0 60px
    }

    .hero-grid {
        flex-direction: row;
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 50px
    }

    .hero-text h1 {
        font-size: 2.8rem
    }

    .hero-text p {
        font-size: 1.1rem
    }

    .hero-buttons {
        flex-direction: row;
        width: auto
    }

    .story-grid {
        flex-direction: row;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px
    }

    .contact-wrapper {
        flex-direction: row;
        display: grid;
        grid-template-columns: 1fr 1.6fr;
        gap: 40px
    }

    .breaking-news .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px
    }

    .category-grid,
    .insights-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px
    }

    .related-topics {
        padding: 80px 0
    }

    .related-topics h2 {
        font-size: 2rem;
        margin-bottom: 50px
    }

    .topics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto
    }

    .topic-card {
        padding: 40px 35px
    }

    .topic-card h3 {
        font-size: 1.35rem;
        margin-bottom: 12px
    }

    .topic-card p {
        font-size: 15px;
        line-height: 1.7
    }

    .newsletter-box {
        padding: 50px 40px
    }

    .news-articles {
        gap: 50px;
        max-width: 900px;
        margin: 0 auto
    }

    .article-header {
        padding: 35px 40px 25px
    }

    .article-full h2 {
        font-size: 1.75rem
    }

    .article-body {
        padding: 35px 40px
    }

    .article-body p {
        font-size: 16px;
        line-height: 1.9
    }

    .article-full img {
        max-height: 450px;
        object-fit: cover
    }

    .policy-text {
        padding: 40px
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between
    }

    .privacy-content {
        flex-direction: row;
        align-items: center
    }

    .privacy-buttons {
        width: auto
    }

    .header {
        padding: 20px 0
    }

    .container {
        padding: 0 50px
    }

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

    .logo {
        max-width: none;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        font-size: 1.5rem
    }
}

@media(min-width:1024px) {
    .container {
        max-width: 1200px
    }

    h1 {
        font-size: 2.5rem
    }

    h2 {
        font-size: 2rem
    }

    h3 {
        font-size: 1.5rem
    }

    .hero-text h1 {
        font-size: 3.2rem
    }

    .hero-text p {
        font-size: 1.2rem
    }

    .hero {
        padding: 100px 0 80px
    }

    .header-content {
        max-width: 1200px;
        margin: 0 auto
    }

    .nav {
        gap: 35px
    }

    .nav ul {
        gap: 35px
    }

    .header nav ul li a {
        font-size: 16px
    }
}