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

:root {
    --primary-color: #1a4d8c;
    --primary-dark: #0d3a6e;
    --primary-light: #2d6bc4;
    --secondary-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f3f4f6;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

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

ul {
    list-style: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 140, 0.9) 0%, rgba(13, 58, 110, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-color);
}

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

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

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

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

.btn-light {
    background: var(--bg-color);
    color: var(--primary-color);
    border-color: var(--bg-color);
}

.btn-light:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

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

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

.feature-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card p {
    flex: 1;
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-color);
    border-radius: 50%;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
}

.about-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-content .btn {
    margin-top: 24px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.service-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card .service-content p {
    flex: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

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

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

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.cta-form {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 140, 0.1);
}

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

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

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    align-items: start;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--bg-color);
}

.footer-brand .logo-subtext {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-color);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--bg-color);
}

.footer-contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-contact strong {
    color: var(--bg-color);
}

.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner.active {
    display: block;
}

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

.cookie-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.active {
    display: flex;
}

.cookie-settings-content {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-settings-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    line-height: 1;
}

.close-btn:hover {
    color: var(--text-color);
}

.cookie-settings-body {
    padding: 24px;
}

.cookie-category {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-category-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.badge {
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.cookie-category p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cookie-settings-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
}

.page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 140, 0.9) 0%, rgba(13, 58, 110, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 0;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-color);
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

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

.content-body h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.content-body p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.mission-list,
.services-list {
    margin-top: 16px;
    padding-left: 20px;
}

.mission-list li,
.services-list li {
    color: var(--text-light);
    margin-bottom: 12px;
    list-style: disc;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.value-card {
    background: var(--bg-color);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card p {
    flex: 1;
}

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

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: var(--bg-color);
    border-radius: 50%;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cta-section.bg-primary {
    background: var(--primary-color);
}

.cta-simple {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-simple h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-color);
    margin-bottom: 16px;
}

.cta-simple p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

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

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

.service-detail-card.reverse {
    direction: rtl;
}

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

.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-detail-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-detail-content ul {
    padding-left: 20px;
}

.service-detail-content ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    list-style: disc;
}

.work-examples {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.example-card {
    background: var(--bg-color);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.example-card p {
    flex: 1;
}

.example-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: var(--bg-color);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.example-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.example-card p {
    color: var(--text-light);
}

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

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

.contact-info-full,
.contact-form-section {
    display: flex;
    flex-direction: column;
}

.contact-info-full .contact-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-section .contact-form-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-section .contact-form-card form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-section .contact-form-card .btn-full {
    margin-top: auto;
}

.contact-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
}

.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-card > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.company-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.detail-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.detail-item strong {
    display: block;
    margin-bottom: 4px;
}

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

.business-hours {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.business-hours h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.business-hours ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.business-hours span {
    font-weight: 500;
    color: var(--text-color);
}

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

.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

.map-container iframe {
    display: block;
}

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

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

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.legal-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    color: var(--text-light);
    margin-bottom: 8px;
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

.contact-block {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.contact-block p {
    margin-bottom: 0;
}

.data-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

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

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

.data-table td {
    color: var(--text-light);
}

.cookie-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

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

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

.cookie-table td {
    color: var(--text-light);
}

.business-model-content {
    max-width: 900px;
    margin: 0 auto;
}

.bm-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

.bm-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bm-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bm-section p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.bm-section ul {
    padding-left: 24px;
}

.bm-section li {
    color: var(--text-light);
    margin-bottom: 10px;
    list-style: disc;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
    align-items: stretch;
}

.audience-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.audience-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.revenue-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.revenue-item {
    display: flex;
    gap: 20px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
}

.revenue-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.revenue-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.revenue-note {
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.data-privacy-note {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.data-privacy-note a {
    color: var(--bg-color);
    text-decoration: underline;
}

.third-party-cookie {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.third-party-cookie h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .content-grid {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-card {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-color);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

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

    .about-grid,
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        order: -1;
    }

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

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

    .cta-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-hero {
        min-height: 250px;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail-image img {
        height: 300px;
    }

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

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

    .contact-info-full,
    .contact-form-section {
        width: 100%;
    }

    .contact-card,
    .contact-form-card {
        padding: 24px;
    }

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

    .revenue-item {
        flex-direction: column;
        text-align: center;
    }
}

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

    .nav {
        height: 64px;
    }

    .nav-menu {
        top: 64px;
    }

    .hero {
        padding-top: 100px;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .cta-form {
        padding: 20px;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .bm-section h2 {
        font-size: 1.5rem;
    }

    .data-table {
        font-size: 0.85rem;
    }

    .data-table th,
    .data-table td {
        padding: 12px 8px;
    }
}
