/* Master Spirit - Brutalism Design CSS */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #000;
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #000;
}

.btn:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 #000;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

.btn-secondary {
    background: #fff;
    color: #000;
}

.btn-tertiary {
    background: #f0f0f0;
    color: #000;
    border-color: #666;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 3px solid #000;
}

.navbar {
    padding: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 40px;
}

.nav-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
    border-bottom-color: #000;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.15s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 74px, #000 74px, #000 76px, transparent 76px),
        linear-gradient(180deg, transparent 74px, #000 74px, #000 76px, transparent 76px);
    background-size: 75px 75px;
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #000;
}

/* Services Section */
.services {
    background: #f5f5f5;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(0,0,0,0.02) 35px,
        rgba(0,0,0,0.02) 70px
    );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #fff;
    border: 3px solid #000;
    padding: 40px;
    text-align: center;
    transition: all 0.15s ease;
    position: relative;
}

.service-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

/* About Section */
.about-section {
    background: #fff;
}

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

.about-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-image {
    width: 100%;
    height: auto;
    border: 3px solid #000;
}

/* Testimonials Section */
.testimonials {
    background: #000;
    color: #fff;
}

.testimonials .section-title {
    color: #fff;
}

.testimonials .section-title::after {
    background: #fff;
}

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

.testimonial-card {
    background: #fff;
    color: #000;
    border: 3px solid #fff;
    padding: 40px;
    text-align: center;
    transition: all 0.15s ease;
}

.testimonial-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #fff;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 3px solid #000;
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-author {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Section */
.blog-section {
    background: #f5f5f5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #fff;
    border: 3px solid #000;
    transition: all 0.15s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #000;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.blog-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
}

.blog-link:hover {
    opacity: 0.7;
}

/* Newsletter Section */
.newsletter {
    background: #000;
    color: #fff;
    text-align: center;
}

.newsletter .section-title {
    color: #fff;
}

.newsletter .section-title::after {
    background: #fff;
}

.newsletter-description {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.8;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    border: 3px solid #fff;
    background: #000;
    color: #fff;
    transition: all 0.15s ease;
}

.form-input:focus {
    outline: none;
    background: #fff;
    color: #000;
}

.form-input::placeholder {
    color: #666;
}

/* Contact Section */
.contact {
    background: #f5f5f5;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #000;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
    transition: all 0.15s ease;
}

.footer-links a:hover,
.footer-links a.active {
    opacity: 1;
    border-bottom: 1px solid #fff;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 16px;
    transition: all 0.15s ease;
}

.social-link:hover {
    background: #fff;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 30px;
    z-index: 10000;
    border-top: 3px solid #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    font-size: 12px;
    padding: 12px 24px;
    border-color: #fff;
    color: #363636;
}

.cookie-buttons .btn-primary {
    background: #fff;
    color: #000;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cookie-modal-content {
    background: #fff;
    border: 3px solid #000;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.cookie-modal-content h3 {
    margin-bottom: 30px;
}

.cookie-options {
    text-align: left;
    margin-bottom: 30px;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    cursor: pointer;
}

.cookie-option input {
    margin-right: 12px;
    transform: scale(1.2);
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page-specific Styles */
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 120px;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.8;
}

.last-updated {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 60px;
}

/* About Page */
.about-hero {
    background: #f5f5f5;
    padding: 120px 0 80px;
    text-align: center;
}

.company-story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.story-text h3 {
    margin: 40px 0 20px;
    font-size: 1.5rem;
}

.story-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-image {
    width: 100%;
    border: 3px solid #000;
}

.values-section {
    background: #f5f5f5;
    padding: 100px 0;
}

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

.value-card {
    background: #fff;
    border: 3px solid #000;
    padding: 30px;
    text-align: center;
    transition: all 0.15s ease;
}

.value-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #000;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.team-section {
    padding: 100px 0;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: #f5f5f5;
    border: 3px solid #000;
    transition: all 0.15s ease;
}

.team-member:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #000;
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid #000;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-role {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.team-member p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.achievements-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.achievements-section .section-title {
    color: #fff;
}

.achievements-section .section-title::after {
    background: #fff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.achievement-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    color: #000;
    border: 3px solid #fff;
    transition: all 0.15s ease;
}

.achievement-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #fff;
}

.achievement-card h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.achievement-card p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0 100px;
    text-align: center;
    background: #f5f5f5;
}

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

.thanks-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
}

.thanks-message {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.8;
}

.thanks-details {
    background: #fff;
    border: 3px solid #000;
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-list {
    list-style: none;
    margin-bottom: 0;
}

.thanks-list li {
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.thanks-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.thanks-list li:last-child {
    border-bottom: none;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.thanks-contact {
    background: #000;
    color: #fff;
    padding: 30px;
    border: 3px solid #000;
}

.thanks-contact h3 {
    color: #fff;
    margin-bottom: 15px;
}

.thanks-contact p {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Blog Pages */
.blog-hero {
    background: #f5f5f5;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-articles {
    padding: 100px 0;
}

.blog-card-large {
    background: #fff;
    border: 3px solid #000;
    margin-bottom: 60px;
    transition: all 0.15s ease;
    overflow: hidden;
}

.blog-card-large:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000;
}

.blog-card-large .blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid #000;
}

.blog-card-large .blog-content {
    padding: 40px;
}

.blog-card-large .blog-title {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-card-large .blog-excerpt {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Article Pages */
.article-hero {
    background: #f5f5f5;
    padding: 120px 0 60px;
    text-align: center;
}

.breadcrumb {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    opacity: 0.6;
}

.breadcrumb a {
    color: #000;
    border-bottom: 1px solid transparent;
    transition: all 0.15s ease;
}

.breadcrumb a:hover {
    border-bottom-color: #000;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    flex-wrap: wrap;
}

.article-content {
    padding: 60px 0 100px;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid #000;
    margin-bottom: 60px;
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
}

.article-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 40px;
    padding: 30px;
    background: #f5f5f5;
    border-left: 4px solid #000;
}

.article-text h2 {
    font-size: 2rem;
    margin: 50px 0 25px;
    color: #000;
}

.article-text h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #000;
}

.article-text h4 {
    font-size: 1.25rem;
    margin: 30px 0 15px;
    color: #000;
}

.article-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-text li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    list-style: none;
}

.article-text li:before {
    content: '▸';
    position: absolute;
    left: -20px;
    color: #000;
    font-weight: bold;
}

.article-footer {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 2px solid #eee;
}

.article-author-bio {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: #f5f5f5;
    border: 3px solid #000;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #000;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #000;
}

.author-info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

.article-navigation {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 100px;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin: 50px 0 25px;
    color: #000;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 30px 0 15px;
    color: #000;
}

.legal-content h4 {
    font-size: 1rem;
    margin: 25px 0 10px;
    color: #000;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    list-style: none;
}

.legal-content li:before {
    content: '▸';
    position: absolute;
    left: -20px;
    color: #000;
    font-weight: bold;
}

.contact-details {
    background: #f5f5f5;
    border: 3px solid #000;
    padding: 30px;
    margin: 30px 0;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details strong {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-buttons,
    .thanks-actions,
    .article-navigation {
        justify-content: center;
    }
    
    .cookie-buttons,
    .cookie-modal-buttons {
        justify-content: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .values-grid,
    .team-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .testimonial-card,
    .value-card,
    .team-member,
    .achievement-card {
        padding: 25px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .article-navigation .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .page-title,
    .article-title,
    .section-title {
        page-break-after: avoid;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card,
    .value-card,
    .team-member {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1pt solid #000;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text-color: #000;
        --bg-color: #fff;
        --accent-color: #000;
    }
    
    body {
        color: var(--text-color);
        background: var(--bg-color);
    }
    
    .btn,
    .service-card,
    .testimonial-card,
    .blog-card,
    .value-card,
    .team-member {
        border-width: 4px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles for Accessibility */
:focus-visible {
    outline: 3px solid #000;
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

.nav-link:focus-visible,
.form-input:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}
