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

:root {
--primary-color: #0f172a;
--secondary-color: #1e3a8a;
--accent-color: #3b82f6;
--highlight-color: #f59e0b;
--text-dark: #0f172a;
--text-light: #64748b;
--bg-light: #f8fafc;
--bg-white: #ffffff;
--border-color: #e2e8f0;
--success-color: #10b981;
--error-color: #ef4444;
}

body {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--bg-white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Sora', sans-serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p {
margin-bottom: 1rem;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

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

.container-fluid {
width: 100%;
padding: 0;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--bg-white);
padding: 18px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

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

.privacy-actions {
display: flex;
gap: 12px;
}

.btn-accept, .btn-learn {
padding: 8px 20px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}

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

.btn-accept:hover {
background: #d97706;
}

.btn-learn {
background: transparent;
color: var(--bg-white);
border: 1px solid var(--bg-white);
}

.btn-learn:hover {
background: var(--bg-white);
color: var(--text-dark);
}

.header {
background: var(--bg-white);
padding: 15px 0;
border-bottom: 1px solid var(--border-color);
position: relative;
z-index: 100;
}

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

.logo {
font-family: 'Sora', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--primary-color);
position: relative;
}

.logo::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 30px;
height: 3px;
background: var(--highlight-color);
}

.nav {
display: flex;
gap: 30px;
align-items: center;
}

.nav-link {
font-size: 14px;
font-weight: 500;
color: var(--text-dark);
position: relative;
padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
color: var(--secondary-color);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--highlight-color);
}

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

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--text-dark);
transition: all 0.3s ease;
}

.hero {
background: var(--primary-color);
color: var(--bg-white);
padding: 0;
position: relative;
overflow: hidden;
min-height: 85vh;
display: flex;
align-items: center;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 80%;
height: 150%;
background: var(--secondary-color);
transform: rotate(-15deg);
opacity: 0.3;
}

.hero::after {
content: '';
position: absolute;
bottom: -30%;
left: -10%;
width: 60%;
height: 100%;
background: var(--highlight-color);
transform: rotate(25deg);
opacity: 0.1;
}

.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
text-align: left;
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
color: var(--bg-white);
line-height: 1.1;
font-weight: 700;
}

.hero-content h1 span {
color: var(--highlight-color);
display: block;
}

.hero-content p {
font-size: 1.2rem;
margin-bottom: 2.5rem;
opacity: 0.9;
line-height: 1.7;
}

.btn-primary, .btn-secondary, .btn-outline {
display: inline-block;
padding: 14px 36px;
border-radius: 6px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}

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

.btn-primary:hover {
background: #d97706;
transform: translateY(-2px);
}

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

.btn-secondary:hover {
background: #1e40af;
transform: translateY(-2px);
}

.btn-outline {
background: transparent;
color: var(--bg-white);
border-color: var(--bg-white);
}

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

.services {
padding: 70px 0;
background: var(--bg-light);
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
}

.section-header h2 {
margin-bottom: 1rem;
}

.section-header p {
color: var(--text-light);
font-size: 1.05rem;
}

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

.service-card {
background: var(--bg-white);
padding: 30px;
border-radius: 12px;
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card .icon-box {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.2rem;
}

.service-card .icon-box i {
font-size: 1.5rem;
color: var(--bg-white);
margin: 0;
}

.service-card h3 {
margin-bottom: 0.8rem;
}

.service-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 1.2rem;
}

.link-arrow {
color: var(--secondary-color);
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
}

.link-arrow:hover {
gap: 12px;
color: var(--highlight-color);
}

.approach {
padding: 70px 0;
}

.approach-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.approach-image img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.approach-content h2 {
margin-bottom: 1rem;
}

.approach-content > p {
color: var(--text-light);
margin-bottom: 2rem;
}

.approach-steps {
display: flex;
flex-direction: column;
gap: 20px;
}

.step {
display: flex;
gap: 20px;
}

.step-number {
font-family: 'Sora', sans-serif;
font-size: 1.8rem;
font-weight: 700;
color: var(--highlight-color);
opacity: 0.5;
min-width: 50px;
}

.step-content h4 {
margin-bottom: 0.4rem;
}

.step-content p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

.stats {
padding: 60px 0;
background: var(--secondary-color);
color: var(--bg-white);
position: relative;
}

.stats::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
opacity: 0.9;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
text-align: center;
position: relative;
z-index: 2;
}

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

.stat-number {
font-family: 'Sora', sans-serif;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

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

.industries {
padding: 70px 0;
}

.industries-grid {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
}

.industry-tag {
background: var(--bg-light);
padding: 10px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 500;
color: var(--text-dark);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}

.industry-tag:hover {
background: var(--secondary-color);
color: var(--bg-white);
border-color: var(--secondary-color);
}

.testimonials {
padding: 70px 0;
background: var(--bg-light);
}

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

.testimonial-card {
background: var(--bg-white);
padding: 35px;
border-radius: 12px;
border-left: 4px solid var(--highlight-color);
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
font-size: 15px;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
font-style: italic;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}

.author-avatar {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--bg-white);
font-weight: 700;
font-size: 1.2rem;
}

.author-info h4 {
margin: 0 0 0.2rem 0;
font-size: 1rem;
}

.author-info p {
margin: 0;
font-size: 13px;
color: var(--text-light);
}

.cta {
padding: 70px 0;
background: var(--primary-color);
color: var(--bg-white);
text-align: center;
position: relative;
overflow: hidden;
}

.cta::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 80%;
height: 200%;
background: var(--highlight-color);
transform: rotate(-15deg);
opacity: 0.1;
}

.cta-content {
position: relative;
z-index: 2;
}

.cta-content h2 {
color: var(--bg-white);
margin-bottom: 1rem;
}

.cta-content p {
font-size: 1.05rem;
margin-bottom: 2rem;
opacity: 0.95;
}

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

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

.footer-info p {
margin: 0;
font-size: 14px;
opacity: 0.8;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 13px;
opacity: 0.8;
transition: opacity 0.3s ease;
}

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

.page-hero {
background: var(--primary-color);
color: var(--bg-white);
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: var(--secondary-color);
opacity: 0.3;
transform: skewX(-15deg);
transform-origin: top;
}

.page-hero h1 {
color: var(--bg-white);
margin-bottom: 0.8rem;
}

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

.strategy-overview, .management-intro {
padding: 70px 0;
}

.content-wrapper, .intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.content-text h2, .intro-content h2 {
margin-bottom: 1.2rem;
}

.content-text p, .intro-content p {
color: var(--text-light);
margin-bottom: 1rem;
}

.content-image img, .intro-image img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-features {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 2rem;
}

.feature-item {
display: flex;
align-items: center;
gap: 12px;
font-weight: 500;
}

.feature-item i {
color: var(--highlight-color);
font-size: 1.2rem;
}

.strategy-services, .management-offerings {
padding: 70px 0;
background: var(--bg-light);
}

.services-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.service-item {
background: var(--bg-white);
padding: 30px;
border-radius: 12px;
display: flex;
gap: 25px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}

.service-item:hover {
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-icon {
min-width: 60px;
height: 60px;
background: var(--bg-light);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
}

.service-icon {
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.service-icon i {
font-size: 1.8rem;
color: var(--bg-white);
}

.service-details h3 {
margin-bottom: 0.8rem;
}

.service-details p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 1rem;
}

.price {
display: inline-block;
background: var(--highlight-color);
color: var(--primary-color);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
}

.strategy-process, .case-highlight {
padding: 70px 0;
}

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

.process-card {
background: var(--bg-light);
padding: 30px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

.process-card:hover {
background: var(--bg-white);
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.process-icon {
width: 70px;
height: 70px;
background: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

.process-icon {
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.process-icon i {
font-size: 1.8rem;
color: var(--bg-white);
}

.process-card h3 {
margin-bottom: 0.8rem;
}

.process-card p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

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

.offering-card {
background: var(--bg-white);
padding: 30px;
border-radius: 12px;
border: 1px solid var(--border-color);
}

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

.offering-header i {
font-size: 1.8rem;
color: var(--secondary-color);
}

.offering-header h3 {
margin: 0;
}

.offering-card > p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 1.5rem;
}

.offering-benefits {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}

.offering-benefits li {
font-size: 14px;
color: var(--text-light);
padding-left: 20px;
position: relative;
}

.offering-benefits li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--success-color);
font-weight: 700;
}

.case-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.case-label {
display: inline-block;
background: var(--highlight-color);
color: var(--primary-color);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 1.5rem;
}

.case-content h2 {
margin-bottom: 1.2rem;
}

.case-content > p {
color: var(--text-light);
margin-bottom: 2.5rem;
}

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

.result-item {
display: flex;
flex-direction: column;
}

.result-value {
font-family: 'Sora', sans-serif;
font-size: 2.2rem;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 0.5rem;
}

.result-label {
font-size: 14px;
color: var(--text-light);
}

.contact-hero {
background: var(--primary-color);
color: var(--bg-white);
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.contact-hero::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: var(--secondary-color);
opacity: 0.3;
transform: skewX(-15deg);
transform-origin: top;
}

.contact-hero h1 {
color: var(--bg-white);
margin-bottom: 0.8rem;
}

.contact-hero p {
font-size: 1.05rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

.contact-main {
padding: 70px 0;
}

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

.contact-info-section h2 {
margin-bottom: 1rem;
}

.contact-info-section > p {
color: var(--text-light);
margin-bottom: 2rem;
}

.contact-methods {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 2.5rem;
}

.contact-method {
display: flex;
gap: 20px;
}

.method-icon {
min-width: 50px;
height: 50px;
background: var(--bg-light);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}

.method-icon {
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.method-icon i {
font-size: 1.3rem;
color: var(--bg-white);
}

.method-details h3 {
font-size: 1rem;
margin-bottom: 0.3rem;
}

.method-details p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

.business-hours {
background: var(--bg-light);
padding: 25px;
border-radius: 12px;
}

.business-hours h3 {
margin-bottom: 1rem;
}

.hours-list {
display: flex;
flex-direction: column;
gap: 10px;
}

.hours-item {
display: flex;
justify-content: space-between;
font-size: 14px;
color: var(--text-light);
}

.contact-form-section {
background: var(--bg-light);
padding: 40px;
border-radius: 12px;
}

.contact-form h3 {
margin-bottom: 1.5rem;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary-color);
box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

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

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

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

.checkbox-label a {
color: var(--secondary-color);
text-decoration: underline;
}

.btn-submit {
width: 100%;
padding: 14px;
background: var(--secondary-color);
color: var(--bg-white);
border: none;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 10px;
}

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

.map-section {
margin-top: 0;
}

.map-wrapper {
width: 100%;
height: 400px;
}

.map-wrapper iframe {
width: 100%;
height: 100%;
}

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

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

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

.thankyou-icon i {
font-size: 3rem;
color: var(--bg-white);
}

.thankyou-content h1 {
margin-bottom: 1.2rem;
}

.thankyou-content p {
color: var(--text-light);
margin-bottom: 1rem;
}

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

.error-number {
font-family: 'Sora', sans-serif;
font-size: 6rem;
font-weight: 700;
color: var(--secondary-color);
opacity: 0.2;
margin-bottom: 1rem;
}

.error-content h1 {
margin-bottom: 1.2rem;
}

.error-content p {
color: var(--text-light);
margin-bottom: 1rem;
}

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

.policy-hero {
background: var(--bg-light);
padding: 50px 0;
text-align: center;
border-bottom: 1px solid var(--border-color);
}

.policy-hero h1 {
margin-bottom: 0.5rem;
}

.policy-hero p {
color: var(--text-light);
font-size: 14px;
}

.policy-content {
padding: 60px 0;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
margin-top: 2.5rem;
margin-bottom: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--border-color);
}

.policy-text h2:first-child {
margin-top: 0;
padding-top: 0;
border-top: none;
}

.policy-text h3 {
margin-top: 1.5rem;
margin-bottom: 0.8rem;
font-size: 1.2rem;
}

.policy-text p {
color: var(--text-light);
margin-bottom: 1.2rem;
line-height: 1.7;
}

.policy-text ul {
margin-bottom: 1.2rem;
padding-left: 25px;
}

.policy-text li {
color: var(--text-light);
margin-bottom: 0.5rem;
line-height: 1.7;
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

.hero {
min-height: 70vh;
}

.hero-content h1 {
font-size: 2.2rem;
}

.hero-content p {
font-size: 1rem;
}
  
.menu-toggle {
display: flex;
}

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

.nav.active {
display: flex;
}

.hero {
padding: 60px 0;
}

.hero-content h1 {
font-size: 2rem;
}

.hero-content p {
font-size: 1rem;
}

.services, .strategy-overview, .management-intro, .strategy-services, .management-offerings, .strategy-process, .case-highlight, .industries, .cta, .contact-main, .policy-content {
padding: 50px 0;
}

.approach {
padding: 50px 0;
}

.approach-wrapper, .content-wrapper, .intro-grid, .contact-grid {
grid-template-columns: 1fr;
gap: 30px;
}

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

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

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

.process-grid, .offerings-grid {
grid-template-columns: 1fr;
}

.case-results {
grid-template-columns: 1fr;
gap: 20px;
}

.contact-form-section {
padding: 30px 20px;
}

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

.footer-links {
justify-content: center;
}

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

.btn-primary, .btn-secondary, .btn-outline {
width: 100%;
}

.error-number {
font-size: 4rem;
}
}

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

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }

.hero {
min-height: 60vh;
}

.hero-content h1 {
font-size: 1.8rem;
}

.stat-number {
font-size: 2rem;
}

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

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

.privacy-actions {
width: 100%;
}

.btn-accept, .btn-learn {
flex: 1;
}
}
