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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #ffffff;
}

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

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.35rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #d63031;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b71c1c;
}

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

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

/* Header and Navigation */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d63031;
}

.logo:hover {
    color: #b71c1c;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #2d3436;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 0;
    color: #2d3436;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d63031;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.hero-text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #636e72;
}

.page-hero {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #636e72;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #d63031;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3);
}

.btn-secondary {
    background-color: #636e72;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #4a5053;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 110, 114, 0.3);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f8f9fa;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.icon-wrapper img {
    width: 100%;
    height: 100%;
}

.philosophy-item h3 {
    margin-bottom: 0.75rem;
    color: #d63031;
}

/* Featured Service */
.featured-service {
    background-color: #ffffff;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.featured-text h2 {
    margin-bottom: 1.25rem;
}

.featured-text p {
    margin-bottom: 1.5rem;
}

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

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

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #74b9ff 0%, #a29bfe 100%);
    color: #2d3436;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d63031;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #636e72;
}

/* Services Highlight */
.services-highlight {
    background-color: #f8f9fa;
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    color: #d63031;
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    background-color: #ffffff;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d63031;
}

.step h3 {
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials-section {
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d63031;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.testimonial-author {
    font-weight: 600;
    color: #636e72;
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    background-color: #ffffff;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-item h3 {
    color: #d63031;
    margin-bottom: 0.75rem;
}

/* Knowledge Section */
.knowledge-section {
    background-color: #f8f9fa;
}

.knowledge-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.knowledge-card {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    border-top: 3px solid #fdcb6e;
}

.knowledge-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d3436;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: #f8f9fa;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3436;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #d63031;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 1.25rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #636e72;
    margin-bottom: 2rem;
}

/* Story Section */
.story-section {
    background-color: #ffffff;
}

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

.content-block h2 {
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    color: #d63031;
    margin-bottom: 0.75rem;
}

/* Team Section */
.team-section {
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e0e0e0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    color: #d63031;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Philosophy Detail */
.philosophy-detail {
    background-color: #f8f9fa;
}

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

.philosophy-content h2 {
    margin-bottom: 1.5rem;
}

/* Achievements Section */
.achievements-section {
    background-color: #ffffff;
}

.achievements-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.achievements-list {
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.achievement-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d63031;
}

.achievement-content h3 {
    margin-bottom: 0.5rem;
}

.achievement-content p {
    margin-bottom: 0;
}

/* Approach Section */
.approach-section {
    background-color: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    padding: 1.75rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.approach-item h3 {
    color: #d63031;
    margin-bottom: 0.75rem;
}

/* Trust Section */
.trust-section {
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.trust-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #636e72;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    color: #d63031;
    margin-bottom: 0.75rem;
}

/* Commitment Section */
.commitment-section {
    background-color: #f8f9fa;
}

/* Services Main */
.services-main {
    background-color: #ffffff;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    margin-bottom: 0;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #d63031;
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-features h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d63031;
    font-weight: 700;
}

/* Service Benefits */
.service-benefits {
    background-color: #f8f9fa;
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-block {
    padding: 1.75rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.benefit-block h3 {
    color: #d63031;
    margin-bottom: 0.75rem;
}

/* Process Overview */
.process-overview {
    background-color: #ffffff;
}

.process-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Service FAQ */
.service-faq {
    background-color: #f8f9fa;
}

.service-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Contact Info */
.contact-info {
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-block h2 {
    color: #d63031;
    margin-bottom: 1.25rem;
}

.info-content p {
    margin-bottom: 0.75rem;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content .note {
    font-size: 0.9rem;
    color: #636e72;
    font-style: italic;
    margin-top: 1rem;
}

/* Location Details */
.location-details {
    background-color: #f8f9fa;
}

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

.location-content h2 {
    margin-bottom: 1.5rem;
}

.location-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #d63031;
}

/* About Contact */
.about-contact {
    background-color: #ffffff;
}

.about-contact h2 {
    margin-bottom: 1.5rem;
}

/* Contact FAQ */
.contact-faq {
    background-color: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Studio Info */
.studio-info {
    background-color: #ffffff;
}

.studio-info h2 {
    margin-bottom: 1.5rem;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #a29bfe 0%, #fab1a0 100%);
    text-align: center;
    padding: 4rem 0;
}

.contact-cta .cta-content h2 {
    color: #2d3436;
}

.contact-cta .cta-content p {
    color: #636e72;
}

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

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

.thank-you-content h1 {
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #636e72;
}

.thank-you-info {
    text-align: left;
    margin-top: 3rem;
}

.thank-you-info h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.thank-you-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
    background-color: #ffffff;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #636e72;
    font-style: italic;
    margin-bottom: 2.5rem;
}

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

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: #2d3436;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #d63031;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #2d3436;
    color: #dfe6e9;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul a {
    color: #dfe6e9;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5053;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #b2bec3;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner p {
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-banner button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #d63031;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #b71c1c;
}

.cookie-settings {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cookie-modal-header h2 {
    margin-bottom: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #636e72;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: #2d3436;
}

.cookie-preference {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-preference:last-of-type {
    border-bottom: none;
}

.cookie-preference-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-preference h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.cookie-preference p {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #d63031;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.cookie-modal-actions button {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-save {
    background-color: #d63031;
    color: #ffffff;
}

.cookie-save:hover {
    background-color: #b71c1c;
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-menu a {
        padding: 0;
        border-bottom: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .featured-content {
        flex-direction: row;
        align-items: center;
    }

    .featured-text,
    .featured-visual {
        flex: 1;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .knowledge-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .knowledge-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .approach-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .trust-grid {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }

    .benefits-comparison {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-block {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-block:last-child {
        flex: 1 1 100%;
    }

    .thank-you-links {
        flex-direction: row;
        justify-content: center;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-banner-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-banner-actions {
        flex-direction: row;
        flex-shrink: 0;
    }

    .achievement-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .achievement-year {
        flex-shrink: 0;
        width: 100px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .philosophy-item {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .stat-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .process-steps {
        flex-direction: row;
    }

    .step {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial {
        flex: 1;
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .knowledge-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .knowledge-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .team-grid {
        flex-direction: row;
    }

    .team-member {
        flex: 1;
    }

    .approach-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .benefit-block {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-block {
        flex: 1;
    }

    .contact-block:last-child {
        flex: 1;
    }
}