:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5a87;
    --accent-color: #3182ce;
    --text-color: #1a202c;
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg-color: #ffffff;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --border-color: #e2e8f0;
    --success-color: #38a169;
    --error-color: #e53e3e;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 150ms ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin: 0 0 1rem;
}

ul, ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

address {
    font-style: normal;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--bg-gray);
    color: var(--text-color);
    border-color: var(--bg-gray);
}

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

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--text-color);
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: background-color var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: transform var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

main {
    padding-top: 72px;
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-color) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.what-we-do,
.who-for,
.problem-solved,
.about-intro,
.mission-values,
.values-section,
.why-choose,
.services-intro,
.bm-intro,
.bm-section,
.bm-revenue,
.bm-data,
.bm-purpose,
.bm-transparency,
.contact-section,
.legal-info {
    padding: 80px 0;
}

.what-we-do {
    background-color: var(--bg-light);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.features-grid,
.problems-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card,
.problem-card,
.value-card {
    padding: 32px;
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.problem-card:hover,
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon,
.mv-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.feature-card h3,
.problem-card h3,
.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p,
.problem-card p,
.value-card p {
    color: var(--text-light);
    margin: 0;
}

.who-for-content,
.about-content,
.why-choose-content,
.purpose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.who-for-text,
.about-text,
.why-choose-text,
.purpose-text {
    padding-right: 24px;
}

.who-for-list,
.why-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.who-for-list li,
.why-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.75rem;
}

.who-for-list li::before,
.why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.who-for-image img,
.about-image img,
.why-choose-image img,
.purpose-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mv-card {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
}

.mv-card h2 {
    color: #ffffff;
}

.mv-card p {
    opacity: 0.9;
    margin: 0;
}

.mv-icon {
    color: rgba(255, 255, 255, 0.8);
}

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

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.cta-text h2 {
    margin-bottom: 1rem;
}

.cta-text p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.lead-form,
.contact-form {
    padding: 32px;
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-color);
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 1rem 0;
}

.cta-box {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
}

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

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

.contact-info h2,
.contact-form-container h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    color: var(--accent-color);
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.business-hours {
    margin-top: 2rem;
}

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

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

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

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.legal-box {
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.legal-box h2 {
    margin-bottom: 1.5rem;
}

.legal-details p {
    margin-bottom: 0.5rem;
}

.services-list {
    padding: 80px 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-content ul {
    color: var(--text-light);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 1rem;
}

.example-card {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
}

.example-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.example-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.service-cta {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.bm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.bm-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.bm-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.bm-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bm-card p {
    color: var(--text-light);
    margin: 0;
}

.revenue-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

.revenue-item {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
}

.revenue-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.revenue-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.revenue-note {
    padding: 24px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius);
}

.revenue-note p {
    margin: 0;
    color: var(--text-light);
}

.data-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-principles {
    margin-top: 2rem;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.data-principles h3 {
    margin-bottom: 1rem;
}

.data-principles ul {
    margin: 0;
}

.transparency-box {
    padding: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    text-align: center;
}

.transparency-box h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.transparency-box p {
    opacity: 0.9;
}

.transparency-box ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.transparency-box li {
    padding-left: 28px;
    position: relative;
}

.transparency-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.transparency-box a {
    color: #ffffff;
    text-decoration: underline;
}

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

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.legal-document h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-document p,
.legal-document ul,
.legal-document ol {
    color: var(--text-light);
}

.legal-document ul,
.legal-document ol {
    margin-bottom: 1.5rem;
}

.contact-box {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    margin-top: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.footer {
    padding: 60px 0 24px;
    background-color: var(--primary-color);
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section address p {
    margin-bottom: 0.25rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-light);
    margin: 0;
}

.cookie-settings {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--radius);
}

.cookie-category {
    margin-bottom: 1rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-category span {
    font-weight: 500;
}

.cookie-category small {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .features-grid,
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px;
        background-color: var(--bg-color);
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    
    .nav-menu a {
        padding: 16px;
        font-size: 1.125rem;
    }
    
    .hero .container,
    .who-for-content,
    .about-content,
    .why-choose-content,
    .cta-content,
    .contact-grid,
    .service-item,
    .purpose-content {
        grid-template-columns: 1fr;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .hero-image,
    .who-for-image,
    .about-image,
    .why-choose-image,
    .purpose-image {
        order: -1;
    }
    
    .who-for-text,
    .about-text,
    .why-choose-text,
    .purpose-text {
        padding-right: 0;
    }
    
    .features-grid,
    .problems-grid,
    .values-grid,
    .mv-grid,
    .bm-grid {
        grid-template-columns: 1fr;
    }
    
    .revenue-content {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .feature-card,
    .problem-card,
    .value-card,
    .mv-card,
    .bm-card,
    .lead-form,
    .contact-form,
    .legal-box,
    .cta-box,
    .transparency-box {
        padding: 24px;
    }
}

@media print {
    .header,
    .cookie-banner,
    .hero-cta,
    .cta-section,
    .cta-box {
        display: none;
    }
    
    main {
        padding-top: 0;
    }
    
    .page-hero {
        padding: 24px 0;
        background: none;
        color: var(--text-color);
    }
    
    .page-hero h1 {
        color: var(--primary-color);
    }
    
    .hero-subtitle {
        color: var(--text-light);
    }
}
