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

:root {
--primary-blue: #0A4D8C;
--secondary-teal: #00A896;
--accent-orange: #FF6B35;
--dark-navy: #1A1F2E;
--light-bg: #F8FAFB;
--text-dark: #2C3E50;
--text-light: #6C757D;
--white: #FFFFFF;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--white);
font-size: 14px;
}

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

header {
background: var(--dark-navy);
padding: 12px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: var(--white);
text-decoration: none;
}

nav {
display: flex;
gap: 25px;
}

nav a {
color: var(--white);
text-decoration: none;
font-size: 13px;
font-weight: 500;
transition: color 0.3s;
position: relative;
}

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

nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--secondary-teal);
transition: width 0.3s;
}

nav a:hover::after {
width: 100%;
}

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

.menu-toggle span {
width: 22px;
height: 2px;
background: var(--white);
margin: 3px 0;
transition: 0.3s;
}

.hero {
background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
padding: 0;
overflow: hidden;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
min-height: 600px;
padding: 60px 15px;
max-width: 1200px;
margin: 0 auto;
}

.hero-content {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: var(--accent-orange);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 20px;
}

.hero h1 {
font-size: 42px;
margin-bottom: 20px;
font-weight: 800;
line-height: 1.2;
}

.hero p {
font-size: 16px;
margin-bottom: 30px;
opacity: 0.9;
line-height: 1.7;
}

.hero-actions {
display: flex;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.cta-btn {
display: inline-block;
background: var(--accent-orange);
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: 2px solid var(--accent-orange);
}

.cta-btn:hover {
background: transparent;
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--white);
border: 2px solid var(--white);
padding: 12px 30px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
}

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

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary-blue);
border: 2px solid var(--primary-blue);
padding: 10px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
}

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

.hero-stats {
display: flex;
gap: 30px;
flex-wrap: wrap;
}

.stat-mini {
display: flex;
flex-direction: column;
}

.stat-mini strong {
font-size: 24px;
font-weight: 700;
color: var(--secondary-teal);
}

.stat-mini span {
font-size: 12px;
opacity: 0.8;
}

.hero-visual {
display: flex;
flex-direction: column;
gap: 20px;
}

.hero-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 25px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s;
}

.hero-card:hover {
transform: translateX(-10px);
background: rgba(255, 255, 255, 0.15);
}

.card-tag {
display: inline-block;
background: var(--secondary-teal);
color: var(--white);
padding: 4px 12px;
border-radius: 12px;
font-size: 10px;
font-weight: 600;
margin-bottom: 10px;
}

.hero-card h3 {
font-size: 18px;
color: var(--white);
margin-bottom: 8px;
}

.hero-card p {
font-size: 13px;
color: rgba(255, 255, 255, 0.8);
margin: 0;
}

section {
padding: 60px 0;
}

h2 {
font-size: 32px;
margin-bottom: 30px;
color: var(--dark-navy);
font-weight: 700;
}

h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary-blue);
font-weight: 600;
}

.featured-news {
background: var(--light-bg);
}

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

.news-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.news-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-card img {
width: 100%;
height: auto;
display: block;
}

.news-content {
padding: 20px;
}

.news-tag {
display: inline-block;
background: var(--secondary-teal);
color: var(--white);
padding: 4px 12px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
margin-bottom: 10px;
}

.news-content h3 {
font-size: 18px;
margin-bottom: 10px;
line-height: 1.4;
}

.news-content p {
font-size: 13px;
color: var(--text-light);
margin-bottom: 12px;
line-height: 1.6;
}

.news-content a {
color: var(--accent-orange);
text-decoration: none;
font-weight: 600;
font-size: 13px;
}

.news-content a:hover {
text-decoration: underline;
}

.date {
font-size: 12px;
color: #999;
font-style: italic;
display: block;
}

.categories {
background: var(--white);
}

.category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.category-item {
background: var(--light-bg);
padding: 30px;
border-radius: 12px;
text-align: center;
border: 2px solid transparent;
transition: all 0.3s;
}

.category-item:hover {
border-color: var(--secondary-teal);
transform: translateY(-5px);
}

.category-icon {
font-size: 40px;
margin-bottom: 15px;
}

.category-item h3 {
color: var(--dark-navy);
margin-bottom: 12px;
}

.category-item p {
font-size: 13px;
color: var(--text-light);
line-height: 1.7;
}

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

.insights h2 {
color: var(--white);
}

.insights-wrapper {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
align-items: start;
}

.insight-main {
background: rgba(255, 255, 255, 0.1);
padding: 35px;
border-radius: 12px;
backdrop-filter: blur(10px);
}

.insight-label {
display: inline-block;
background: var(--accent-orange);
color: var(--white);
padding: 5px 14px;
border-radius: 15px;
font-size: 11px;
font-weight: 600;
margin-bottom: 15px;
}

.insight-main h2 {
font-size: 28px;
margin-bottom: 20px;
}

.insight-main p {
margin-bottom: 15px;
line-height: 1.8;
opacity: 0.95;
}

.insight-sidebar {
display: flex;
flex-direction: column;
gap: 20px;
}

.insight-stat-box {
background: rgba(255, 255, 255, 0.1);
padding: 25px;
border-radius: 12px;
text-align: center;
backdrop-filter: blur(10px);
}

.stat-number {
display: block;
font-size: 36px;
font-weight: 700;
color: var(--secondary-teal);
margin-bottom: 8px;
}

.stat-label {
display: block;
font-size: 13px;
opacity: 0.9;
}

.statistics {
background: var(--dark-navy);
color: var(--white);
text-align: center;
}

.statistics h2 {
color: var(--white);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-top: 30px;
}

.stat-item h3 {
font-size: 42px;
color: var(--secondary-teal);
margin-bottom: 10px;
font-weight: 700;
}

.stat-item p {
font-size: 14px;
opacity: 0.9;
}

.expert-voices {
background: var(--light-bg);
}

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

.voice-card {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.voice-header {
display: flex;
gap: 15px;
margin-bottom: 15px;
align-items: center;
}

.voice-avatar {
width: 50px;
height: 50px;
background: var(--secondary-teal);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 16px;
flex-shrink: 0;
}

.voice-info h4 {
font-size: 16px;
color: var(--dark-navy);
margin-bottom: 4px;
}

.voice-info span {
font-size: 12px;
color: var(--text-light);
}

.voice-card p {
font-size: 13px;
color: var(--text-light);
line-height: 1.7;
font-style: italic;
}

.why-choose {
background: var(--white);
}

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

.feature-item {
padding: 30px;
border: 2px solid var(--light-bg);
border-radius: 12px;
transition: all 0.3s;
position: relative;
}

.feature-item:hover {
border-color: var(--secondary-teal);
transform: translateY(-5px);
}

.feature-number {
position: absolute;
top: 20px;
right: 20px;
font-size: 48px;
font-weight: 700;
color: var(--light-bg);
}

.feature-item h3 {
margin-bottom: 15px;
}

.feature-item p {
font-size: 13px;
color: var(--text-light);
line-height: 1.7;
}

.recent-updates {
background: var(--light-bg);
}

.updates-list {
max-width: 900px;
margin: 0 auto;
}

.update-item {
background: var(--white);
padding: 25px;
margin-bottom: 20px;
border-radius: 12px;
border-left: 4px solid var(--accent-orange);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.update-time {
display: inline-block;
background: var(--accent-orange);
color: var(--white);
padding: 4px 12px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
margin-right: 10px;
}

.update-item h3 {
font-size: 18px;
margin: 10px 0;
}

.update-item p {
font-size: 13px;
color: var(--text-light);
line-height: 1.7;
}

.update-date {
font-size: 12px;
color: #999;
display: inline-block;
}

.sector-spotlight {
background: var(--white);
}

.spotlight-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
align-items: start;
}

.spotlight-text {
background: var(--light-bg);
padding: 35px;
border-radius: 12px;
}

.spotlight-text h3 {
font-size: 24px;
margin-bottom: 15px;
color: var(--dark-navy);
}

.spotlight-text p {
margin-bottom: 15px;
line-height: 1.8;
color: var(--text-light);
}

.spotlight-stats {
display: flex;
flex-direction: column;
gap: 20px;
}

.spotlight-stat {
background: var(--primary-blue);
color: var(--white);
padding: 25px;
border-radius: 12px;
text-align: center;
}

.stat-big {
display: block;
font-size: 36px;
font-weight: 700;
color: var(--secondary-teal);
margin-bottom: 8px;
}

.stat-desc {
display: block;
font-size: 13px;
opacity: 0.9;
}

.newsletter {
background: var(--secondary-teal);
color: var(--white);
padding: 50px 0;
}

.newsletter h2 {
color: var(--white);
margin-bottom: 15px;
}

.newsletter-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.newsletter-text {
flex: 1;
min-width: 300px;
}

.newsletter-text p {
font-size: 15px;
opacity: 0.95;
}

.newsletter-action {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

.newsletter-note {
font-size: 12px;
opacity: 0.8;
}

.page-header {
background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
color: var(--white);
padding: 60px 0;
text-align: center;
}

.page-header h1 {
font-size: 38px;
margin-bottom: 15px;
font-weight: 700;
}

.page-header p {
font-size: 16px;
opacity: 0.95;
}

.news-content {
background: var(--white);
}

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

.article-full {
margin-bottom: 50px;
padding-bottom: 50px;
border-bottom: 2px solid var(--light-bg);
}

.article-full:last-child {
border-bottom: none;
}

.article-full img {
width: 100%;
height: auto;
border-radius: 12px;
margin-bottom: 25px;
}

.article-full h2 {
font-size: 28px;
margin-bottom: 15px;
}

.article-meta {
font-size: 12px;
color: var(--text-light);
margin-bottom: 20px;
}

.article-full p {
margin-bottom: 15px;
line-height: 1.8;
color: var(--text-light);
}

.more-news {
background: var(--light-bg);
}

.headlines-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.headline-item {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s;
}

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

.headline-tag {
display: inline-block;
background: var(--primary-blue);
color: var(--white);
padding: 4px 12px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
margin-bottom: 10px;
}

.headline-item h3 {
font-size: 17px;
margin-bottom: 10px;
}

.headline-item p {
font-size: 13px;
color: var(--text-light);
line-height: 1.6;
}

.companies-content {
background: var(--white);
}

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

.company-card {
background: var(--light-bg);
padding: 30px;
border-radius: 12px;
border: 2px solid transparent;
transition: all 0.3s;
}

.company-card:hover {
border-color: var(--secondary-teal);
transform: translateY(-5px);
}

.company-category {
display: inline-block;
background: var(--accent-orange);
color: var(--white);
padding: 5px 14px;
border-radius: 15px;
font-size: 11px;
font-weight: 600;
margin-bottom: 15px;
}

.company-card h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--dark-navy);
}

.company-card p {
font-size: 13px;
color: var(--text-light);
margin-bottom: 12px;
line-height: 1.7;
}

.price-tag {
display: inline-block;
background: var(--primary-blue);
color: var(--white);
padding: 8px 18px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-top: 15px;
}

.startup-news {
background: var(--light-bg);
}

.news-list {
max-width: 900px;
margin: 0 auto;
}

.news-item {
background: var(--white);
padding: 30px;
margin-bottom: 25px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.news-item h3 {
font-size: 20px;
margin-bottom: 12px;
}

.news-item p {
font-size: 13px;
color: var(--text-light);
margin-bottom: 12px;
line-height: 1.7;
}

.industry-insights {
background: var(--white);
}

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

.insight-card {
background: var(--light-bg);
padding: 30px;
border-radius: 12px;
border-left: 4px solid var(--secondary-teal);
}

.insight-icon {
font-size: 36px;
margin-bottom: 15px;
}

.insight-card h3 {
font-size: 19px;
margin-bottom: 12px;
color: var(--dark-navy);
}

.insight-card p {
font-size: 13px;
color: var(--text-light);
line-height: 1.7;
}

.contact-content {
background: var(--white);
}

.contact-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
}

.contact-info {
background: var(--light-bg);
padding: 35px;
border-radius: 12px;
}

.info-item {
margin-bottom: 30px;
}

.info-item h3 {
font-size: 17px;
margin-bottom: 10px;
color: var(--dark-navy);
}

.info-item p {
font-size: 13px;
color: var(--text-light);
line-height: 1.7;
}

.contact-form-wrapper h2 {
margin-bottom: 15px;
}

.contact-form-wrapper > p {
font-size: 13px;
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.7;
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
font-size: 13px;
color: var(--dark-navy);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 2px solid var(--light-bg);
border-radius: 8px;
font-size: 13px;
font-family: inherit;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary-teal);
}

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
width: auto;
margin-top: 3px;
}

.checkbox-group span {
font-size: 13px;
color: var(--text-light);
}

.submit-btn {
background: var(--accent-orange);
color: var(--white);
padding: 14px 40px;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.submit-btn:hover {
background: var(--primary-blue);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.map-section {
background: var(--light-bg);
}

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
padding: 20px;
}

.thankyou-content,
.error-content {
background: var(--white);
padding: 60px 40px;
border-radius: 16px;
text-align: center;
max-width: 650px;
box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.thankyou-icon {
width: 90px;
height: 90px;
background: var(--secondary-teal);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 50px;
margin: 0 auto 30px;
}

.thankyou-content h1 {
font-size: 32px;
color: var(--dark-navy);
margin-bottom: 20px;
}

.thankyou-content p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 25px;
line-height: 1.8;
}

.thankyou-info {
background: var(--light-bg);
padding: 25px;
border-radius: 12px;
margin: 30px 0;
text-align: left;
}

.thankyou-info p {
font-weight: 600;
margin-bottom: 15px;
color: var(--dark-navy);
}

.thankyou-info ul {
list-style: none;
padding: 0;
}

.thankyou-info li {
padding: 10px 0;
font-size: 13px;
color: var(--text-light);
border-bottom: 1px solid #e0e0e0;
}

.thankyou-info li:last-child {
border-bottom: none;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-top: 30px;
}

.error-content h1 {
font-size: 80px;
color: var(--accent-orange);
margin-bottom: 20px;
font-weight: 700;
}

.error-content h2 {
font-size: 28px;
color: var(--dark-navy);
margin-bottom: 15px;
}

.error-content p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 30px;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.policy-content {
background: var(--white);
padding: 60px 0;
}

.policy-content .container {
max-width: 900px;
}

.policy-content h1 {
font-size: 36px;
color: var(--dark-navy);
margin-bottom: 20px;
}

.update-date {
font-size: 12px;
color: #999;
margin-bottom: 40px;
display: block;
}

.policy-content h2 {
font-size: 24px;
color: var(--primary-blue);
margin-top: 40px;
margin-bottom: 20px;
}

.policy-content h3 {
font-size: 18px;
color: var(--dark-navy);
margin-top: 30px;
margin-bottom: 15px;
}

.policy-content p {
font-size: 13px;
line-height: 1.8;
color: var(--text-light);
margin-bottom: 15px;
}

footer {
background: var(--dark-navy);
color: var(--white);
padding: 50px 0 25px;
}

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

.footer-col h4 {
font-size: 17px;
margin-bottom: 18px;
color: var(--white);
}

.footer-col p {
font-size: 13px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 10px;
}

.footer-col a {
display: block;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
font-size: 13px;
margin-bottom: 10px;
transition: color 0.3s;
}

.footer-col a:hover {
color: var(--secondary-teal);
}

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(26, 31, 46, 0.98);
color: var(--white);
padding: 25px;
z-index: 9999;
display: none;
box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 25px;
flex-wrap: wrap;
}

.privacy-content p {
font-size: 13px;
margin: 0;
flex: 1;
min-width: 280px;
line-height: 1.6;
}

.privacy-content button {
background: var(--secondary-teal);
color: var(--white);
border: none;
padding: 12px 30px;
border-radius: 8px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
transition: all 0.3s;
}

.privacy-content button:hover {
background: var(--accent-orange);
transform: translateY(-2px);
}

@media (max-width: 768px) {
nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
background: var(--dark-navy);
flex-direction: column;
padding: 25px;
transition: left 0.3s;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

nav.active {
left: 0;
}

.menu-toggle {
display: flex;
}

.hero-grid {
grid-template-columns: 1fr;
min-height: auto;
padding: 40px 15px;
}

.hero h1 {
font-size: 32px;
}

.hero p {
font-size: 14px;
}

.hero-visual {
display: none;
}

h2 {
font-size: 26px;
}

.insights-wrapper,
.spotlight-content {
grid-template-columns: 1fr;
}

.news-grid,
.category-grid,
.features-grid,
.stats-grid,
.headlines-list,
.companies-grid,
.insights-grid,
.voices-grid {
grid-template-columns: 1fr;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.newsletter-content {
flex-direction: column;
text-align: center;
}

.thankyou-content,
.error-content {
padding: 45px 30px;
}

.thankyou-content h1 {
font-size: 26px;
}

.error-content h1 {
font-size: 64px;
}

.footer-content {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
body {
font-size: 13px;
}

.logo {
font-size: 16px;
}

.hero {
padding: 0;
}

.hero-grid {
padding: 30px 15px;
}

.hero h1 {
font-size: 26px;
}

.hero p {
font-size: 13px;
}

.hero-actions {
flex-direction: column;
}

.hero-actions a {
width: 100%;
text-align: center;
}

.cta-btn,
.btn-outline,
.btn-secondary {
padding: 12px 24px;
font-size: 13px;
}

section {
padding: 40px 0;
}

h2 {
font-size: 22px;
}

h3 {
font-size: 17px;
}

.news-card,
.company-card,
.news-item,
.insight-card,
.voice-card,
.feature-item {
padding: 20px;
}

.thankyou-icon {
width: 70px;
height: 70px;
font-size: 40px;
}

.thankyou-content h1 {
font-size: 22px;
}

.error-content h1 {
font-size: 52px;
}

.error-content h2 {
font-size: 22px;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.thankyou-actions a,
.error-actions a {
width: 100%;
}

.stat-mini {
min-width: 100px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

.hero h1 {
font-size: 22px;
}

h2 {
font-size: 20px;
}

.cta-btn,
.btn-outline,
.btn-secondary,
.submit-btn {
padding: 10px 20px;
font-size: 12px;
}

.hero-stats {
gap: 15px;
}

.stat-mini strong {
font-size: 20px;
}

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

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

.thankyou-content,
.error-content {
padding: 35px 20px;
}
}
