/* CSS Variables */
:root {
    --primary-color: 210 11% 15%; /* #212529 - Dark navy */
    --secondary-color: 14 88% 55%; /* #E74C3C - Red/orange */
    --accent-color: 45 100% 60%; /* #FFD700 - Gold */
    --background-color: 210 11% 98%; /* #F8F9FA - Light gray */
    --surface-color: 0 0% 100%; /* #FFFFFF - White */
    --text-primary: 210 11% 15%; /* #212529 - Dark navy */
    --text-secondary: 210 7% 46%; /* #6C757D - Medium gray */
    --text-light: 0 0% 100%; /* #FFFFFF - White */
    --border-color: 210 14% 89%; /* #E9ECEF - Light border */
    --shadow-light: 210 11% 15% / 0.1; /* Light shadow */
    --shadow-medium: 210 11% 15% / 0.15; /* Medium shadow */
    --shadow-heavy: 210 11% 15% / 0.25; /* Heavy shadow */
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --header-height: 80px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background-color));
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Section */
.section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: hsl(var(--text-secondary));
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background: hsl(var(--secondary-color));
    color: hsl(var(--text-light));
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid hsl(var(--secondary-color));
}

.btn-primary:hover {
    background: hsl(14 88% 50%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--shadow-medium));
}

.btn-secondary {
    background: transparent;
    color: hsl(var(--text-primary));
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: 2px solid hsl(var(--border-color));
    transition: var(--transition);
}

.btn-secondary:hover {
    background: hsl(var(--primary-color));
    color: hsl(var(--text-light));
    border-color: hsl(var(--primary-color));
    transform: translateY(-2px);
}

/* Header */
.header {
    background: hsl(var(--surface-color));
    box-shadow: 0 2px 10px hsl(var(--shadow-light));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
}

.navbar {
    height: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: hsl(var(--text-primary));
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: hsl(var(--text-light));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(var(--primary-color) / 0.8), hsl(var(--secondary-color) / 0.8));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: var(--header-height);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px hsl(var(--shadow-heavy));
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: hsl(var(--text-light));
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
    color: hsl(var(--text-light));
    text-align: center;
    padding: 120px 0 80px;
    margin-top: var(--header-height);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: hsl(var(--text-light));
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: hsl(var(--surface-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px hsl(var(--shadow-light));
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsl(var(--shadow-medium));
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: hsl(var(--primary-color));
    margin-bottom: 1rem;
}

/* Goals Section */
.goals {
    background: hsl(var(--surface-color));
}

.goals-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.goals-text {
    text-align: center;
}

.section-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.goals ul {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto 0;
}

.goals li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: hsl(var(--text-secondary));
}

.goals li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--secondary-color));
    font-weight: bold;
}

/* Team Section */
.team-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.section-icon-large {
    width: 200px;
    height: 200px;
    justify-self: center;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: hsl(var(--secondary-color));
    margin-bottom: 0.5rem;
}

/* Success Section */
.success {
    background: hsl(var(--surface-color));
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

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

.achievement {
    text-align: center;
}

.achievement h3 {
    font-size: 2rem;
    color: hsl(var(--secondary-color));
    margin-bottom: 0.5rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
    color: hsl(var(--text-light));
}

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

.newsletter h2 {
    color: hsl(var(--text-light));
}

.newsletter p {
    color: hsl(var(--text-light));
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid hsl(var(--accent-color));
}

/* Footer */
.footer {
    background: hsl(var(--primary-color));
    color: hsl(var(--text-light));
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: hsl(var(--text-light));
    margin-bottom: 1rem;
}

.footer-section p {
    color: hsl(210 11% 70%);
}

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

.footer-section a:hover {
    color: hsl(var(--secondary-color));
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px;
    background: hsl(var(--surface-color) / 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.social-links a:hover {
    background: hsl(var(--secondary-color));
    transform: translateY(-2px);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--surface-color) / 0.1);
    color: hsl(210 11% 70%);
}

/* About Page Styles */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-icon {
    width: 150px;
    height: 150px;
    justify-self: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: hsl(var(--surface-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px hsl(var(--shadow-light));
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsl(var(--shadow-medium));
}

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.mission-points {
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: hsl(var(--surface-color));
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px hsl(var(--shadow-light));
}

.mission-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Services Page Styles */
.service-detail-card {
    background: hsl(var(--surface-color));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px hsl(var(--shadow-light));
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsl(var(--shadow-medium));
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.service-detail-card ul {
    margin-top: 1rem;
}

.service-detail-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: hsl(var(--text-secondary));
}

.service-detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--secondary-color));
    font-weight: bold;
}

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

.category-card {
    background: hsl(var(--surface-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px hsl(var(--shadow-light));
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsl(var(--shadow-medium));
}

.category-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.category-features span {
    background: hsl(var(--background-color));
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: hsl(var(--text-primary));
}

.delivery-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.delivery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.delivery-stat {
    text-align: center;
}

.delivery-stat h3 {
    font-size: 2rem;
    color: hsl(var(--secondary-color));
    margin-bottom: 0.5rem;
}

.coverage-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.area-column ul li {
    padding: 0.25rem 0;
    color: hsl(var(--text-secondary));
}

.delivery-icon {
    width: 150px;
    height: 150px;
    justify-self: center;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: hsl(var(--surface-color));
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px hsl(var(--shadow-light));
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.business-hours {
    background: hsl(var(--surface-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px hsl(var(--shadow-light));
}

.hours-list {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--border-color));
}

.hours-item:last-child {
    border-bottom: none;
}

.contact-form {
    background: hsl(var(--surface-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px hsl(var(--shadow-light));
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: hsl(var(--surface-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px hsl(var(--shadow-light));
}

.faq-item h3 {
    color: hsl(var(--primary-color));
    margin-bottom: 1rem;
}

/* Thanks Page Styles */
.thanks {
    text-align: center;
    padding: 100px 0;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thanks h1 {
    color: hsl(var(--secondary-color));
    margin-bottom: 2rem;
}

.thanks-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.thanks-card {
    background: hsl(var(--surface-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px hsl(var(--shadow-light));
}

.detail-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-reminder {
    background: hsl(var(--surface-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    box-shadow: 0 2px 10px hsl(var(--shadow-light));
}

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

.contact-option {
    text-align: center;
}

.social-reminder {
    margin-top: 3rem;
}

.social-reminder .social-links {
    justify-content: center;
    margin-top: 1rem;
}

.social-reminder .social-links a {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: hsl(var(--background-color));
    color: hsl(var(--text-primary));
}

.social-reminder .social-links a:hover {
    background: hsl(var(--secondary-color));
    color: hsl(var(--text-light));
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document {
    background: hsl(var(--surface-color));
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px hsl(var(--shadow-light));
    line-height: 1.7;
}

.legal-meta {
    background: hsl(var(--background-color));
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: hsl(var(--primary-color));
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-section h3 {
    color: hsl(var(--secondary-color));
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: hsl(var(--text-secondary));
}

.contact-info {
    background: hsl(var(--background-color));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

/* Cookie Management Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: hsl(var(--primary-color));
    color: hsl(var(--text-light));
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px hsl(var(--shadow-medium));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--primary-color) / 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.cookie-modal-content {
    background: hsl(var(--surface-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin: 1.5rem 0;
    padding: 1rem;
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--border-radius);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option p {
    margin: 0.5rem 0 0 1.5rem;
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
}

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

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

.cookie-table th {
    background: hsl(var(--background-color));
    font-weight: 600;
    color: hsl(var(--text-primary));
}

.cookie-controls {
    margin: 2rem 0;
    text-align: center;
}

.browser-instructions {
    background: hsl(var(--background-color));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.browser-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--border-color));
}

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

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-buttons,
    .newsletter-form,
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .team-content,
    .success-content,
    .story-content,
    .delivery-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-stats,
    .achievements,
    .delivery-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .coverage-areas {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .services-grid,
    .values-grid,
    .categories-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
}
