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

:root {
--primary: #0ea5e9;
--secondary: #06b6d4;
--accent: #f59e0b;
--dark: #0f172a;
--light: #f8fafc;
--gray: #64748b;
--success: #10b981;
--border: #e2e8f0;
}

body {
font-family: 'Sora', sans-serif;
color: var(--dark);
line-height: 1.6;
background: var(--light);
overflow-x: hidden;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: white;
padding: 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s;
}

.privacy-popup.show {
transform: translateY(0);
}

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

.privacy-content p {
flex: 1;
min-width: 250px;
font-size: 14px;
}

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

.privacy-buttons a {
color: var(--primary);
text-decoration: none;
font-size: 14px;
}

.privacy-buttons button {
background: var(--primary);
color: white;
border: none;
padding: 10px 25px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
}

.header {
background: white;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s ease;
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 22px;
font-weight: 700;
color: var(--primary);
}

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 24px;
color: var(--dark);
cursor: pointer;
}

.nav {
display: flex;
gap: 30px;
}

.nav a {
color: var(--dark);
text-decoration: none;
font-weight: 500;
font-size: 15px;
transition: color 0.3s;
}

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

.hero {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
color: white;
padding: 0;
position: relative;
overflow: hidden;
min-height: 90vh;
display: flex;
align-items: center;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
border-radius: 50%;
animation: pulse 8s ease-in-out infinite;
}

.hero::after {
content: '';
position: absolute;
bottom: -30%;
left: -15%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
border-radius: 50%;
animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
position: relative;
z-index: 1;
max-width: 900px;
text-align: center;
margin: 0 auto;
padding: 100px 0;
}

.hero-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
margin-bottom: 25px;
font-weight: 700;
line-height: 1.2;
background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-content p {
font-size: 19px;
margin-bottom: 40px;
opacity: 0.9;
line-height: 1.7;
color: #cbd5e1;
max-width: 700px;
margin-left: auto;
margin-right: auto;
animation: fadeIn 0.8s ease-out 0.3s both;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 0.9; }
}

.hero-content .btn-primary {
animation: fadeIn 0.8s ease-out 0.5s both;
margin-bottom: 60px;
display: inline-block;
box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-top: 60px;
animation: slideUp 0.8s ease-out 0.6s both;
padding: 40px;
background: rgba(255, 255, 255, 0.05);
border-radius: 16px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-stat {
text-align: center;
padding: 20px;
border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
border-right: none;
}

.hero-stat-number {
font-size: 48px;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 8px;
background: linear-gradient(135deg, var(--accent), #fbbf24);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-stat-label {
font-size: 14px;
opacity: 0.8;
color: #cbd5e1;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
}

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

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
}

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

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

.featured-news h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.news-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.news-card:hover {
transform: translateY(-5px);
}

.news-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.news-icon i {
font-size: 28px;
color: white;
}

.news-card h3 {
font-size: 22px;
margin-bottom: 10px;
font-family: 'Space Grotesk', sans-serif;
}

.news-date {
font-size: 13px;
color: var(--gray);
margin-bottom: 15px;
}

.news-card p {
color: var(--gray);
margin-bottom: 20px;
font-size: 15px;
}

.news-link {
color: var(--primary);
text-decoration: none;
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
}

.stats-section {
background: var(--dark);
color: white;
padding: 60px 0;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
text-align: center;
}

.stat-item i {
font-size: 40px;
color: var(--primary);
margin-bottom: 15px;
}

.stat-item h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 10px;
}

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

.categories-section {
padding: 80px 0;
background: white;
}

.categories-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.category-card {
background: var(--light);
padding: 35px;
border-radius: 12px;
text-decoration: none;
color: var(--dark);
transition: all 0.3s;
border: 2px solid transparent;
}

.category-card:hover {
border-color: var(--primary);
transform: translateY(-5px);
}

.category-card i {
font-size: 40px;
color: var(--primary);
margin-bottom: 20px;
display: block;
}

.category-card h3 {
font-size: 22px;
margin-bottom: 12px;
font-family: 'Space Grotesk', sans-serif;
}

.category-card p {
color: var(--gray);
font-size: 14px;
}

.newsletter-section {
background: linear-gradient(135deg, var(--secondary), var(--accent));
color: white;
padding: 70px 0;
text-align: center;
}

.newsletter-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 15px;
}

.newsletter-content p {
font-size: 17px;
margin-bottom: 30px;
opacity: 0.95;
}

.insights-section {
padding: 80px 0;
}

.insights-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.insight-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.insight-card img {
width: 100%;
height: 250px;
object-fit: cover;
display: block;
}

.insight-content {
padding: 25px;
}

.insight-content h3 {
font-size: 22px;
margin-bottom: 12px;
font-family: 'Space Grotesk', sans-serif;
}

.insight-content p {
color: var(--gray);
font-size: 15px;
}

.founders-section {
padding: 80px 0;
background: white;
}

.founders-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

.founders-grid {
max-width: 900px;
margin: 0 auto;
}

.founder-card {
background: var(--light);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.founder-card img {
width: 100%;
height: 400px;
object-fit: cover;
display: block;
}

.founder-info {
padding: 35px;
}

.founder-info h3 {
font-size: 24px;
margin-bottom: 8px;
font-family: 'Space Grotesk', sans-serif;
}

.founder-role {
color: var(--primary);
font-size: 14px;
font-weight: 600;
margin-bottom: 15px;
}

.founder-info p {
color: var(--gray);
font-size: 16px;
line-height: 1.7;
font-style: italic;
}

.ecosystem-section {
padding: 80px 0;
background: var(--light);
}

.ecosystem-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.ecosystem-card {
background: white;
padding: 30px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.ecosystem-card:hover {
transform: translateY(-5px);
}

.ecosystem-card i {
font-size: 36px;
color: var(--primary);
margin-bottom: 15px;
}

.ecosystem-card h3 {
font-size: 20px;
margin-bottom: 10px;
font-family: 'Space Grotesk', sans-serif;
}

.ecosystem-card p {
color: var(--gray);
font-size: 14px;
line-height: 1.6;
}

.image-feature-section {
padding: 80px 0;
background: white;
}

.image-feature-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.image-feature-img img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.image-feature-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 20px;
}

.image-feature-text p {
color: var(--gray);
font-size: 16px;
line-height: 1.8;
margin-bottom: 15px;
}

.footer {
background: var(--dark);
color: white;
padding: 30px 0;
}

.footer-content {
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
gap: 25px;
margin-bottom: 15px;
flex-wrap: wrap;
}

.footer-links a {
color: white;
text-decoration: none;
font-size: 14px;
opacity: 0.8;
transition: opacity 0.3s;
}

.footer-links a:hover {
opacity: 1;
}

.footer p {
font-size: 13px;
opacity: 0.7;
}

.page-hero {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 70px 0;
text-align: center;
}

.page-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
margin-bottom: 15px;
}

.page-hero p {
font-size: 17px;
opacity: 0.95;
}

.content-section {
padding: 80px 0;
}

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

.content-intro h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 20px;
}

.content-intro p {
color: var(--gray);
font-size: 16px;
line-height: 1.8;
}

.articles-list {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 30px;
}

.article-item {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
display: flex;
gap: 25px;
}

.article-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.article-icon i {
font-size: 24px;
color: white;
}

.article-content h3 {
font-size: 20px;
margin-bottom: 8px;
font-family: 'Space Grotesk', sans-serif;
}

.article-date {
font-size: 13px;
color: var(--gray);
margin-bottom: 12px;
}

.article-content p {
color: var(--gray);
font-size: 15px;
}

.products-section {
padding: 80px 0;
background: var(--light);
}

.products-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.product-card {
background: white;
padding: 35px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-card i {
font-size: 50px;
color: var(--primary);
margin-bottom: 20px;
}

.product-card h3 {
font-size: 22px;
margin-bottom: 15px;
font-family: 'Space Grotesk', sans-serif;
}

.product-card p {
color: var(--gray);
font-size: 14px;
margin-bottom: 20px;
min-height: 60px;
}

.product-price {
font-size: 28px;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
font-family: 'Space Grotesk', sans-serif;
}

.btn-product {
display: inline-block;
background: var(--primary);
color: white;
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
}

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

.tech-trends, .blockchain-features {
padding: 80px 0;
}

.tech-trends h2, .blockchain-features h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.trend-item, .feature-item {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
}

.trend-item i, .feature-item i {
font-size: 40px;
color: var(--primary);
margin-bottom: 20px;
}

.trend-item h3, .feature-item h3 {
font-size: 20px;
margin-bottom: 12px;
font-family: 'Space Grotesk', sans-serif;
}

.trend-item p, .feature-item p {
color: var(--gray);
font-size: 14px;
}

.cta-section {
background: linear-gradient(135deg, var(--accent), #fb923c);
color: white;
padding: 70px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.cta-section::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 500px;
height: 500px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
}

.cta-section::after {
content: '';
position: absolute;
bottom: -50%;
left: -10%;
width: 500px;
height: 500px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
}

.cta-content {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 15px;
position: relative;
z-index: 1;
}

.cta-content p {
font-size: 17px;
margin-bottom: 30px;
opacity: 0.9;
position: relative;
z-index: 1;
}

.contact-section {
padding: 80px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}

.contact-info h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 28px;
margin-bottom: 30px;
}

.info-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.info-item i {
font-size: 24px;
color: var(--primary);
flex-shrink: 0;
margin-top: 5px;
}

.info-item h3 {
font-size: 16px;
margin-bottom: 5px;
font-weight: 600;
}

.info-item p {
color: var(--gray);
font-size: 15px;
}

.contact-form-wrapper h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 28px;
margin-bottom: 30px;
}

.contact-form {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 2px solid var(--border);
border-radius: 8px;
font-family: 'Sora', sans-serif;
font-size: 14px;
transition: border-color 0.3s;
}

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

.checkbox-group {
margin-top: 20px;
}

.checkbox-label {
display: flex;
gap: 10px;
align-items: flex-start;
cursor: pointer;
font-size: 13px;
}

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

.checkbox-label a {
color: var(--primary);
}

.btn-submit {
width: 100%;
background: var(--primary);
color: white;
padding: 14px;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
font-family: 'Sora', sans-serif;
}

.btn-submit:hover {
background: var(--secondary);
}

.map-section {
padding: 80px 0;
background: var(--light);
}

.map-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 40px;
}

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

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

.thankyou-content, .error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.thankyou-icon {
width: 100px;
height: 100px;
background: var(--success);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}

.thankyou-icon i {
font-size: 50px;
color: white;
}

.thankyou-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 20px;
}

.thankyou-content p {
color: var(--gray);
font-size: 16px;
margin-bottom: 35px;
line-height: 1.8;
}

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

.error-code {
font-family: 'Space Grotesk', sans-serif;
font-size: 120px;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 20px;
}

.error-content p {
color: var(--gray);
font-size: 16px;
margin-bottom: 35px;
}

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

.error-suggestions {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: left;
}

.error-suggestions h3 {
font-size: 20px;
margin-bottom: 20px;
font-family: 'Space Grotesk', sans-serif;
}

.error-suggestions ul {
list-style: none;
}

.error-suggestions li {
margin-bottom: 15px;
}

.error-suggestions a {
color: var(--dark);
text-decoration: none;
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
transition: color 0.3s;
}

.error-suggestions a:hover {
color: var(--primary);
}

.error-suggestions i {
color: var(--primary);
font-size: 18px;
}

@media (max-width: 992px) {
.image-feature-content {
grid-template-columns: 1fr;
gap: 30px;
}

.image-feature-img img {
height: 300px;
}
}

.policy-section {
padding: 80px 0;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 50px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.policy-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 38px;
margin-bottom: 15px;
}

.policy-date {
color: var(--gray);
font-size: 14px;
margin-bottom: 35px;
}

.policy-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 26px;
margin-top: 40px;
margin-bottom: 20px;
}

.policy-content h3 {
font-size: 20px;
margin-top: 30px;
margin-bottom: 15px;
font-weight: 600;
}

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

.policy-content ul, .policy-content ol {
margin-left: 25px;
margin-bottom: 20px;
}

.policy-content li {
color: var(--gray);
font-size: 15px;
line-height: 1.8;
margin-bottom: 10px;
}

@media (max-width: 768px) {
.menu-toggle {
display: block;
}

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

.nav.active {
display: flex;
}

.hero {
min-height: 75vh;
}

.hero-content {
padding: 70px 0;
}

.hero-content h1 {
font-size: 36px;
}

.hero-content p {
font-size: 17px;
}

.hero-stats {
grid-template-columns: 1fr;
gap: 30px;
padding: 30px 20px;
}

.hero-stat {
border-right: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding-bottom: 20px;
}

.hero-stat:last-child {
border-bottom: none;
padding-bottom: 0;
}

.hero-stat-number {
font-size: 36px;
}

.featured-news h2, .categories-section h2, .insights-section h2, .products-section h2, .tech-trends h2, .blockchain-features h2, .cta-content h2 {
font-size: 28px;
}

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

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

.article-item {
flex-direction: column;
}

.error-code {
font-size: 80px;
}

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

.policy-content {
padding: 30px 20px;
}

.policy-content h1 {
font-size: 28px;
}

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

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

.btn-primary, .btn-secondary {
width: 100%;
text-align: center;
}
}

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

.hero {
min-height: 65vh;
}

.hero-content {
padding: 50px 0;
}

.hero-content h1 {
font-size: 30px;
}

.hero-content p {
font-size: 16px;
}

.hero-stats {
grid-template-columns: 1fr;
gap: 25px;
padding: 25px 15px;
}

.hero-stat-number {
font-size: 32px;
}

.hero-stat-label {
font-size: 13px;
}

.featured-news, .categories-section, .insights-section, .products-section, .tech-trends, .blockchain-features, .content-section, .contact-section, .map-section {
padding: 50px 0;
}

.news-grid, .categories-grid, .insights-grid, .products-grid, .trends-grid, .features-grid {
grid-template-columns: 1fr;
}

.stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.logo {
font-size: 18px;
}

.privacy-content {
flex-direction: column;
align-items: flex-start;
}

.privacy-buttons {
width: 100%;
justify-content: space-between;
}

.founders-section, .ecosystem-section {
padding: 50px 0;
}

.founder-card img {
height: 300px;
}

.ecosystem-grid {
grid-template-columns: 1fr;
}
}
}
