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

:root {
    /* Color Palette */
    --primary-color: 25 85% 45%; /* #C8651A - Terra Cotta */
    --secondary-color: 16 100% 45%; /* #E6630A - Clay Orange */
    --accent-color: 35 75% 55%; /* #D4A574 - Warm Beige */
    --text-primary: 220 15% 15%; /* #232936 - Dark Blue Gray */
    --text-secondary: 220 10% 45%; /* #6B7280 - Medium Gray */
    --background: 45 65% 97%; /* #FAF9F6 - Warm White */
    --background-alt: 30 45% 92%; /* #F0EDE6 - Light Beige */
    --border-color: 30 25% 85%; /* #DDD8D0 - Light Gray */
    --success-color: 120 60% 50%; /* #4ADE80 - Green */
    --error-color: 0 75% 55%; /* #EF4444 - Red */
    --white: 0 0% 100%; /* #FFFFFF */
    --shadow: 220 15% 15% / 0.1; /* Shadow with transparency */
    
    /* Typography */
    --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-family-heading: 'Georgia', 'Times New Roman', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

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

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

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: hsl(var(--primary-color) / 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: hsl(var(--primary-color));
    border: 2px solid hsl(var(--primary-color));
}

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

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

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: hsl(var(--text-primary));
    font-weight: bold;
    font-size: 1.5rem;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: hsl(var(--text-secondary));
    font-weight: 500;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: hsl(var(--text-primary));
    margin: 3px 0;
    transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: hsl(var(--white));
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 2px 10px hsl(var(--shadow));
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, hsl(var(--primary-color) / 0.1), hsl(var(--accent-color) / 0.1));
    overflow: hidden;
}

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

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

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

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: var(--section-padding);
}

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

.section-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, hsl(var(--primary-color) / 0.1), hsl(var(--accent-color) / 0.1));
    text-align: center;
    padding: 3rem 0;
}

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

/* Services Grid */
.services {
    background-color: hsl(var(--background-alt));
}

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

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

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

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

/* Detailed Service Cards */
.service-detailed-card {
    background-color: hsl(var(--white));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px hsl(var(--shadow));
    transition: var(--transition);
}

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

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: hsl(var(--success-color));
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: hsl(var(--primary-color));
    margin-top: 1rem;
}

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

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

.stat {
    text-align: center;
}

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

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: hsl(var(--white));
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px hsl(var(--shadow));
}

.stat-card h3 {
    font-size: 2.5rem;
    color: hsl(var(--primary-color));
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-card {
    background-color: hsl(var(--white));
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 15px hsl(var(--shadow));
}

.achievement-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

/* Mission & Vision */
.mission-vision {
    background-color: hsl(var(--background-alt));
}

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

.mv-card {
    background-color: hsl(var(--white));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px hsl(var(--shadow));
}

.mv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.value-card {
    padding: 2rem;
    border-left: 4px solid hsl(var(--primary-color));
    background-color: hsl(var(--white));
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px hsl(var(--shadow));
}

/* Newsletter */
.newsletter {
    background-color: hsl(var(--primary-color));
    color: hsl(var(--white));
}

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

.newsletter h2,
.newsletter p {
    color: hsl(var(--white));
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

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

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-primary));
}

.contact-text p {
    margin-bottom: 0.25rem;
}

.contact-text small {
    color: hsl(var(--text-secondary));
    font-size: 0.9rem;
}

/* Business Hours */
.business-hours {
    background-color: hsl(var(--background-alt));
    padding: 2rem;
    border-radius: var(--border-radius);
}

.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;
}

/* Forms */
.contact-form {
    background-color: hsl(var(--white));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px hsl(var(--shadow));
}

.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: 0.75rem;
    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(--primary-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-size: 0.9rem;
}

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

.checkmark {
    position: relative;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.location-highlights {
    margin-top: 2rem;
}

.highlight {
    margin-bottom: 2rem;
}

.highlight h4 {
    color: hsl(var(--primary-color));
    margin-bottom: 0.5rem;
}

.map-placeholder {
    background-color: hsl(var(--background-alt));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.map-info {
    color: hsl(var(--text-secondary));
}

.map-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background-color: hsl(var(--white));
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px hsl(var(--shadow));
}

.faq-item h3 {
    background-color: hsl(var(--primary-color));
    color: hsl(var(--white));
    padding: 1rem;
    margin: 0;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.faq-item p {
    padding: 1rem;
    margin: 0;
}

/* Product Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background-color: hsl(var(--white));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px hsl(var(--shadow));
}

.category-card ul {
    list-style: none;
    margin-top: 1rem;
}

.category-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.category-card li::before {
    content: "•";
    color: hsl(var(--primary-color));
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: hsl(var(--primary-color));
    color: hsl(var(--white));
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    background-color: hsl(var(--background-alt));
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Thank You Pages */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

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

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.step {
    background-color: hsl(var(--white));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px hsl(var(--shadow));
}

.benefits-list {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
    list-style: none;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: hsl(var(--text-secondary));
}

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

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: hsl(var(--text-secondary));
    margin: 0 1rem;
    transition: var(--transition);
}

.social-link:hover {
    color: hsl(var(--primary-color));
}

.social-link img {
    width: 24px;
    height: 24px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: center;
}

.contact-item img {
    width: 24px;
    height: 24px;
}

.info-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: hsl(var(--text-secondary));
    padding: 1rem;
    border: 2px solid hsl(var(--border-color));
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.info-link:hover {
    border-color: hsl(var(--primary-color));
    color: hsl(var(--primary-color));
}

.info-link img {
    width: 24px;
    height: 24px;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

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

.legal-content h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.last-updated {
    text-align: center;
    font-style: italic;
    margin-bottom: 3rem;
    color: hsl(var(--text-secondary));
}

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

.legal-section h2 {
    color: hsl(var(--primary-color));
    border-bottom: 2px solid hsl(var(--primary-color));
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: hsl(var(--text-primary));
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.legal-actions {
    margin-top: 4rem;
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: hsl(var(--white));
    margin-bottom: 1rem;
}

.footer-section p {
    color: hsl(var(--white) / 0.8);
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: hsl(var(--primary-color));
    border-radius: 50%;
    transition: var(--transition);
}

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

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

.contact-info {
    margin-top: 1rem;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.footer .contact-item img {
    width: 16px;
    height: 16px;
    margin-top: 0.2rem;
    filter: brightness(0) invert(1);
}

.footer .contact-item span {
    color: hsl(var(--white) / 0.8);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    margin-top: 1rem;
}

.footer-links a {
    color: hsl(var(--white) / 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid hsl(var(--white) / 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: hsl(var(--white) / 0.8);
    margin: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--text-primary));
    color: hsl(var(--white));
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition);
}

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

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

.cookie-content p {
    color: hsl(var(--white));
    margin: 0;
    flex: 1;
}

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

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-accept-all {
    background-color: hsl(var(--success-color));
    color: hsl(var(--white));
}

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

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

.btn-accept-all:hover {
    background-color: hsl(var(--success-color) / 0.9);
}

.btn-necessary:hover {
    background-color: hsl(var(--white) / 0.1);
}

.btn-settings:hover {
    background-color: hsl(var(--primary-color) / 0.9);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--text-primary) / 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

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

.cookie-modal h3 {
    margin-bottom: 1.5rem;
    color: hsl(var(--text-primary));
}

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

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

.cookie-category input[type="checkbox"] {
    margin: 0;
}

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

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

.btn-save {
    background-color: hsl(var(--primary-color));
    color: hsl(var(--white));
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel {
    background-color: transparent;
    color: hsl(var(--text-secondary));
    border: 1px solid hsl(var(--border-color));
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-save:hover {
    background-color: hsl(var(--primary-color) / 0.9);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .info-links {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .achievement-card,
    .mv-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-modal-content {
        padding: 1rem;
        width: 95%;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .cookie-modal,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    main {
        margin-top: 0;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 1rem 0;
        break-inside: avoid;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid hsl(var(--primary-color));
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: 0 0% 0%;
        --shadow: 0 0% 0% / 0.3;
    }
}
