/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --primary: 197 84% 52%; /* #D44A38 - Warm red-orange for pet energy */
    --primary-light: 197 84% 65%; /* Lighter shade */
    --primary-dark: 197 84% 40%; /* Darker shade */
    
    /* Secondary Colors */
    --secondary: 141 43% 42%; /* #3D8B57 - Nature green */
    --secondary-light: 141 43% 55%;
    --secondary-dark: 141 43% 30%;
    
    /* Accent Colors */
    --accent: 39 100% 50%; /* #FFA500 - Warm orange */
    --accent-light: 39 100% 65%;
    
    /* Neutral Colors */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #FFFFFF */
    --surface-alt: 210 11% 95%; /* #EAEEF3 */
    
    /* Text Colors */
    --text-primary: 213 17% 20%; /* #2C3E50 */
    --text-secondary: 213 17% 40%; /* #5A6C7D */
    --text-muted: 213 17% 60%; /* #8B9CAF */
    --text-light: 0 0% 100%; /* #FFFFFF */
    
    /* Border Colors */
    --border: 210 11% 85%; /* #D1D9E0 */
    --border-light: 210 11% 90%; /* #E0E6ED */
    
    /* Status Colors */
    --success: 122 39% 49%; /* #4CAF50 */
    --warning: 45 100% 51%; /* #FF9800 */
    --error: 4 90% 58%; /* #F44336 */
    --info: 207 90% 54%; /* #2196F3 */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsl(213 17% 20% / 0.05);
    --shadow-md: 0 4px 6px -1px hsl(213 17% 20% / 0.1), 0 2px 4px -1px hsl(213 17% 20% / 0.06);
    --shadow-lg: 0 10px 15px -3px hsl(213 17% 20% / 0.1), 0 4px 6px -2px hsl(213 17% 20% / 0.05);
    --shadow-xl: 0 20px 25px -5px hsl(213 17% 20% / 0.1), 0 10px 10px -5px hsl(213 17% 20% / 0.04);
    
    /* Typography */
    --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-family-heading: 'Georgia', 'Times New Roman', serif;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Utility Classes */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--space-sm);
    color: hsl(var(--text-secondary));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 1rem;
    min-height: 44px;
    gap: var(--space-xs);
}

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

.btn-primary:hover {
    background-color: hsl(var(--primary-dark));
    border-color: hsl(var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--text-light));
    border-color: hsl(var(--secondary));
}

.btn-secondary:hover {
    background-color: hsl(var(--secondary-dark));
    border-color: hsl(var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.navbar {
    height: 100%;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu a {
    font-weight: 500;
    color: hsl(var(--text-primary));
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: hsl(var(--text-primary));
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    border-top: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

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

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.cookie-content h3 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-sm);
}

.cookie-content p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-md);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Main Content Spacing */
main {
    margin-top: var(--header-height);
}

/* Hero Section */
.hero {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--surface-alt)));
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-text h1 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
}

.hero-text p {
    font-size: 1.2rem;
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-lg));
}

/* Section Styles */
section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
}

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

/* Services Overview */
.services-overview {
    background-color: hsl(var(--surface));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    background-color: hsl(var(--surface-alt));
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.benefits-text h2 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-lg);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.benefit-item img {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-xs);
}

.benefit-item p {
    color: hsl(var(--text-secondary));
    margin: 0;
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-lg));
}

/* Usage Tips */
.usage-tips {
    background-color: hsl(var(--surface));
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.tip-card {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid hsl(var(--border));
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.tip-card:hover {
    border-color: hsl(var(--primary));
    transform: translateY(-2px);
}

.tip-card h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
}

.tip-card p {
    color: hsl(var(--text-secondary));
    margin: 0;
}

/* Testimonials */
.testimonials {
    background-color: hsl(var(--surface-alt));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: var(--space-lg);
    font-size: 4rem;
    color: hsl(var(--primary) / 0.3);
    font-family: var(--font-family-heading);
    line-height: 1;
}

.testimonial-content {
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    color: hsl(var(--text-secondary));
    font-style: italic;
    margin: 0;
}

.testimonial-author strong {
    color: hsl(var(--text-primary));
    display: block;
    margin-bottom: var(--space-xs);
}

.testimonial-author span {
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info h2 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
}

.contact-info > p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-lg);
}

.contact-details {
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    align-items: flex-start;
}

.contact-item img {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-xs);
}

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

.social-links h4 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
}

.social-icons {
    display: flex;
    gap: var(--space-md);
}

.social-icons a {
    width: 44px;
    height: 44px;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

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

.social-icons a:hover img {
    filter: brightness(0) invert(1);
}

.contact-forms {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Forms */
.form-container {
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-container h3 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
}

.form-container > p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    color: hsl(var(--text-primary));
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    background-color: hsl(var(--surface));
    color: hsl(var(--text-primary));
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

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

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: hsl(var(--primary));
}

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

.checkbox-label a:hover {
    color: hsl(var(--primary-dark));
}

/* Footer */
.footer {
    background-color: hsl(var(--text-primary));
    color: hsl(var(--text-light));
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-section h3,
.footer-section h4 {
    color: hsl(var(--text-light));
    margin-bottom: var(--space-md);
}

.footer-section p {
    color: hsl(var(--text-light) / 0.8);
    margin-bottom: var(--space-sm);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-section ul a {
    color: hsl(var(--text-light) / 0.8);
    transition: color var(--transition-fast);
}

.footer-section ul a:hover {
    color: hsl(var(--text-light));
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid hsl(var(--text-light) / 0.2);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: hsl(var(--text-light) / 0.6);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: hsl(var(--text-light) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.footer-social a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--secondary) / 0.1));
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: 1.1rem;
    color: hsl(var(--text-secondary));
    max-width: 600px;
    margin: 0 auto;
}

/* Thank You Page */
.thank-you {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    background-color: hsl(var(--success) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon {
    width: 50px;
    height: 50px;
}

.thank-you h1 {
    color: hsl(var(--success));
    margin-bottom: var(--space-lg);
}

.thank-you-message {
    font-size: 1.1rem;
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xl);
}

.next-steps {
    text-align: left;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    border: 1px solid hsl(var(--border));
}

.next-steps h3 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
    text-align: center;
}

.next-steps ul {
    list-style: disc;
    margin-left: var(--space-lg);
}

.next-steps li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
}

.thank-you-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.contact-info {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.contact-info h4 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-sm);
}

.contact-info p {
    color: hsl(var(--text-secondary));
    margin: 0;
}

.contact-info a {
    color: hsl(var(--primary));
}

.contact-info a:hover {
    color: hsl(var(--primary-dark));
}

/* Care Guide Styles */
.care-guide-content {
    display: grid;
    gap: var(--space-2xl);
    align-items: flex-start;
}

.guide-navigation {
    top: calc(var(--header-height) + var(--space-lg));
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.guide-navigation h3 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
}

.guide-navigation ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.guide-navigation a {
    color: hsl(var(--text-secondary));
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.guide-navigation a:hover {
    color: hsl(var(--primary));
    background-color: hsl(var(--primary) / 0.1);
}

.guide-sections {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.guide-section {
    padding: var(--space-xl);
    border-bottom: 1px solid hsl(var(--border));
}

.guide-section:last-child {
    border-bottom: none;
}

.guide-section h2 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-lg);
}

.guide-section h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
}

.guide-section h3:first-of-type {
    margin-top: 0;
}

.guide-section ul {
    list-style: disc;
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.guide-section li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
}

.pro-tip,
.warning,
.emergency {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.pro-tip {
    background-color: hsl(var(--info) / 0.1);
    border-left: 4px solid hsl(var(--info));
}

.warning {
    background-color: hsl(var(--warning) / 0.1);
    border-left: 4px solid hsl(var(--warning));
}

.emergency {
    background-color: hsl(var(--error) / 0.1);
    border-left: 4px solid hsl(var(--error));
}

.pro-tip h4,
.warning h4,
.emergency h4 {
    margin-bottom: var(--space-sm);
}

.feeding-table h4 {
    color: hsl(var(--secondary));
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.exercise-guide h4 {
    color: hsl(var(--secondary));
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

/* Materials Page Styles */
.materials-overview {
    background-color: hsl(var(--surface));
}

.quality-standards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.standard-item {
    text-align: center;
}

.standard-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background-color: hsl(var(--secondary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standard-icon img {
    width: 40px;
    height: 40px;
}

.material-categories {
    background-color: hsl(var(--surface-alt));
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-xl);
}

.category-card {
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.category-card h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-lg);
    text-align: center;
}

.material-list h4 {
    color: hsl(var(--secondary));
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.material-list h4:first-of-type {
    margin-top: 0;
}

.material-list ul {
    list-style: disc;
    margin-left: var(--space-lg);
}

.material-list li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
}

.manufacturing-methods {
    background-color: hsl(var(--surface));
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.method-card {
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid hsl(var(--border));
}

.method-card h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-lg);
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: hsl(var(--text-secondary));
    margin: 0;
}

.testing-categories h4,
.environmental-practices h4 {
    color: hsl(var(--secondary));
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.testing-categories h4:first-of-type,
.environmental-practices h4:first-of-type {
    margin-top: 0;
}

.testing-categories ul,
.environmental-practices ul {
    list-style: disc;
    margin-left: var(--space-lg);
}

.testing-categories li,
.environmental-practices li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
}

.certifications {
    background-color: hsl(var(--surface-alt));
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.cert-item {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid hsl(var(--border));
}

.cert-item h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
}

.cert-item p {
    color: hsl(var(--text-secondary));
    margin: 0;
}

/* Services Page Styles */
.services-detail {
    background-color: hsl(var(--surface));
}

.service-category {
    margin-bottom: var(--space-2xl);
}

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

.service-category h2 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-xl);
    text-align: center;
}

.service-description {
    margin-top: var(--space-md);
}

.service-description p {
    margin-bottom: var(--space-md);
}

.service-description ul {
    list-style: disc;
    margin-left: var(--space-lg);
}

.service-description li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
}

.professional-services {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.service-item {
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-item h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-md);
}

.service-item > p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-lg);
}

.service-features ul {
    list-style: disc;
    margin-left: var(--space-lg);
}

.service-features li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.delivery-card {
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.delivery-card h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-md);
}

.delivery-card ul {
    list-style: disc;
    margin-left: var(--space-lg);
}

.delivery-card li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.program-card {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid hsl(var(--border));
    transition: border-color var(--transition-fast);
}

.program-card:hover {
    border-color: hsl(var(--primary));
}

.program-card h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
}

.program-card > p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-md);
}

.program-card ul {
    list-style: disc;
    margin-left: var(--space-lg);
}

.program-card li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
}

.services-cta {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--secondary) / 0.1));
    text-align: center;
}

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

.cta-content h2 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Styles */
.faq-content {
    background-color: hsl(var(--surface));
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.faq-category {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-category h2 {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    padding: var(--space-lg);
    margin: 0;
    text-align: center;
}

.faq-list {
    padding: var(--space-lg);
}

.faq-item {
    border-bottom: 1px solid hsl(var(--border));
    padding: var(--space-md) 0;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    color: hsl(var(--text-primary));
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: hsl(var(--primary));
    font-weight: bold;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: hsl(var(--text-secondary));
    margin-top: var(--space-md);
    margin-bottom: 0;
    line-height: 1.6;
}

.faq-cta {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--secondary) / 0.1));
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.faq-cta h2 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
}

.faq-cta p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

/* Legal Pages Styles */
.legal-content {
    background-color: hsl(var(--surface));
    padding: var(--space-2xl) 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background-color: hsl(var(--surface));
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid hsl(var(--border));
}

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

.legal-section h2 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-lg);
}

.legal-section h3 {
    color: hsl(var(--secondary));
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
}

.legal-section h3:first-of-type {
    margin-top: 0;
}

.legal-section h4 {
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-sm);
    margin-top: var(--space-md);
}

.legal-section p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.legal-section ul {
    list-style: disc;
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-section li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.contact-details {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.contact-details p {
    margin-bottom: var(--space-sm);
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-xl);
    text-align: center;
}

.legal-footer p {
    margin-bottom: var(--space-xs);
}

.legal-footer p:last-child {
    margin-bottom: 0;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: var(--space-lg) 0;
}

.cookie-table h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-md);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-xl);
    background-color: hsl(var(--surface));
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table th {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    padding: var(--space-md);
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: var(--space-md);
    border-bottom: 1px solid hsl(var(--border));
    color: hsl(var(--text-secondary));
}

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

.browser-instructions {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.browser-instructions h4 {
    color: hsl(var(--secondary));
    margin-bottom: var(--space-xs);
}

.browser-instructions p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-md);
    font-family: monospace;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .care-guide-content {
        grid-template-columns: 1fr;
    }
    
    .guide-navigation {
        position: static;
        order: 2;
        margin-top: var(--space-lg);
    }
    
    .guide-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.75rem;
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: hsl(var(--surface));
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-table table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-table {
        overflow-x: auto;
    }
    
    .cookie-table table {
        min-width: 500px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .nav-toggle,
    .btn,
    .cookie-buttons,
    .thank-you-actions,
    .cta-buttons,
    .social-icons,
    .footer-social {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .page-header {
        padding-top: var(--space-lg);
        background: none;
    }
    
    .legal-document {
        box-shadow: none;
        padding: 0;
    }
    
    .legal-section {
        break-inside: avoid;
    }
    
    h1, h2, h3 {
        break-after: avoid;
    }
}

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

/* Focus Styles */
*:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

.btn:focus {
    outline-offset: 4px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary: 0 0% 0%;
        --text-secondary: 0 0% 20%;
        --background: 0 0% 100%;
        --surface: 0 0% 100%;
        --border: 0 0% 0%;
    }
}
