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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

h1 {
    font-size: 7.5rem;
    color: #e0e0e0;
}

h2 {
    font-size: 2.5rem;
    color: #e0e0e0;
}

h3 {
    font-size: 1.8rem;
    color: #e0e0e0;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Header and Navigation */
.header {
    background: #1a1a1a;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0;
}

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

/* Focus styles for accessibility */
.nav-menu a:focus,
button:focus,
.filter-btn:focus,
.cta-button:focus {
    outline: 2px solid #d32f2f;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #d32f2f;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d32f2f;
    transition: width 0.3s ease;
    transform: translateX(0);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    transform: translateX(0);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger button animation when menu is active */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Chrome mobile fallback */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.1);
    /* Chrome mobile fallback */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Alternative background for Chrome mobile */
    background-image: url('salon%20face%20photo.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.50;
    filter: grayscale(100%) brightness(0.8);
    -webkit-filter: grayscale(100%) brightness(0.8);
    /* Chrome compatibility */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Force hardware acceleration */
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Chrome mobile specific */
    -webkit-appearance: none;
    appearance: none;
}



.hero-content h1 {
    margin: 0;
    color: #d32f2f;
    text-align: center;
    flex-shrink: 0;
}

.hero-title-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo {
    width: 240px;
    height: 240px;
    object-fit: contain;
}

.flashing-element {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.flashing-element.hidden {
    opacity: 0;
}

/* Mobile Responsiveness for Hero Elements */
@media (max-width: 768px) {
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-title-container {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-logo-left,
.hero-logo-right {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}



/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #d32f2f;
}

.cta-button:hover {
    background: #fff;
    color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.cta-button.primary {
    background: #d32f2f;
    color: #fff;
}

.cta-button.secondary {
    background: transparent;
    color: #d32f2f;
    border-color: #d32f2f;
}

.cta-button.secondary:hover {
    background: #d32f2f;
    color: #fff;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #0a0a0a;
}

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

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

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d32f2f;
    border-radius: 8px 8px 0 0;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature h3 {
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1.5rem;
}

/* Definition Section */
.definition-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.definition-content {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.definition-header {
    text-align: center;
    margin-bottom: 2rem;
}

.definition-header h2 {
    font-size: 3rem;
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.pronunciation {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.origin {
    color: #d32f2f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.definition-body {
    margin: 2rem 0;
}

.definition-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.definition-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    min-width: 30px;
}

.definition-text {
    flex: 1;
}

.definition-meaning {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.definition-example {
    background: #333;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #d32f2f;
}

.example-label {
    color: #d32f2f;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-text {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.definition-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.definition-footer p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Stylist Intro Section */
.stylist-intro {
    padding: 40px 0;
    background: #0a0a0a;
}

.stylist-intro p {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: #2a2a2a;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

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

.service-card {
    background: #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #444;
}

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

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

.learn-more {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #b71c1c;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d32f2f;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-logo-img {
    width: 240px;
    height: 240px;
    filter: brightness(0.9) drop-shadow(0 0 0 transparent);
}

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

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #cccccc;
}

/* Services Detail */
.services-detail {
    padding: 60px 0;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    color: #d32f2f;
    margin-bottom: 2rem;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 0.5rem;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.service-item:hover {
    background: #f0f0f0;
}

.service-info h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
}

/* Gallery */
.gallery-filters {
    padding: 40px 0;
    background: #f8f8f8;
}

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

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #d32f2f;
    background: transparent;
    color: #d32f2f;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d32f2f;
    color: #fff;
}

.gallery-grid {
    padding: 60px 0;
}

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

.gallery-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-video {
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px 15px 0 0;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.category-tag {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* About Page */
.about-story {
    padding: 60px 0;
}

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

.story-text h2 {
    color: #d32f2f;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-values {
    padding: 60px 0;
    background: #f8f8f8;
}

.mission-section {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-section h2 {
    color: #d32f2f;
    margin-bottom: 1.5rem;
}

.mission-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

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

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-info {
    padding: 1.5rem;
}

.member-title {
    color: #d32f2f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-specialties {
    margin-top: 1rem;
}

.member-specialties span {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 2px;
}

.member-specialties span:first-child {
    background: #d32f2f;
    color: #fff;
    font-weight: 600;
}

/* Contact Page */
.contact-content {
    padding: 60px 0;
}

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

.contact-info h2 {
    color: #d32f2f;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: #d32f2f;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.contact-form {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h2 {
    color: #d32f2f;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
}

.submit-btn {
    background: #d32f2f;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    text-align: center;
    padding: 2rem;
}

.placeholder-image.large {
    height: 400px;
}

.placeholder-image span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.placeholder-image p {
    font-size: 1rem;
    margin: 0;
}

/* Google Maps Button */
.google-maps-link {
    text-decoration: none;
    color: inherit;
}

.maps-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #d32f2f;
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
}

.maps-button:hover {
    background: #b71c1c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

.maps-button span:first-child {
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #333;
        text-align: center;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 50vh;
        padding: 80px 20px 40px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .hero-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        opacity: 0.50;
        filter: grayscale(50%) brightness(1.0);
        -webkit-filter: grayscale(50%) brightness(1.0);
        /* Chrome compatibility */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .hero-content {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        flex-wrap: nowrap;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
        order: 2;
        flex: 0 0 auto;
        margin: 0 1.2rem;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .hero-logo-left {
        width: 50px;
        height: 50px;
        order: 1;
        flex: 0 0 auto;
    }
    
    .hero-logo-right {
        width: 50px;
        height: 50px;
        order: 3;
        flex: 0 0 auto;
    }
    
    .definition-section {
        padding: 40px 20px;
    }
    
    .definition-content {
        padding: 1.5rem;
    }
    
    .stylist-intro {
        padding: 40px 20px;
    }
    
    .features {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .story-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-grid,
    .gallery-items,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .footer-logo-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 40vh;
        padding: 60px 15px 30px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        order: 2;
    }
    
    .hero-logo-left {
        width: 50px;
        height: 50px;
        order: 1;
    }
    
    .hero-logo-right {
        width: 50px;
        height: 50px;
        order: 3;
    }
    
    .definition-section {
        padding: 30px 15px;
    }
    
    .definition-content {
        padding: 1rem;
    }
    
    .stylist-intro {
        padding: 30px 15px;
        font-size: 0.9rem;
    }
    
    .features {
        padding: 30px 0;
    }
    
    .features-grid {
        padding: 0 15px;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle.large {
        width: 150px;
        height: 150px;
    }
    
    .logo-circle.large .logo-text {
        font-size: 18px;
        top: 15px;
    }
    
    .logo-circle.large .logo-monogram {
        font-size: 54px;
        margin-top: 15px;
    }
}

/* Join the Resistance Page Styles */
.hero-join {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.hero-join h2 {
    color: #d32f2f;
    margin-bottom: 1.5rem;
}

.hero-join p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #e0e0e0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

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

.benefit-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #d32f2f;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.requirements-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.requirements-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #d32f2f;
}

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

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.requirement-icon {
    font-size: 1.5rem;
    color: #4caf50;
    flex-shrink: 0;
}

.requirement-text h3 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.application-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.application-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #d32f2f;
}

.application-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #d32f2f;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.application-form h3 {
    text-align: center;
    color: #d32f2f;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.checkbox-item label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 2rem;
    }
}

/* Stylists Page */
.stylists-list {
    padding: 60px 0;
}

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

.stylist-card {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.stylist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stylist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #333;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d32f2f;
    font-size: 3rem;
    font-weight: 700;
}

.stylist-info h3 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.stylist-title {
    color: #d32f2f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Join the Resistance Page */
.join-content {
    padding: 60px 0;
    background: #0a0a0a;
}

.join-grid {
    display: grid;
    gap: 4rem;
    margin-bottom: 4rem;
}

.join-section h2 {
    color: #d32f2f;
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-item h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

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

.requirement-item, .provision-item {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.requirement-item h3, .provision-item h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Mobile styles for application section */
@media (max-width: 768px) {
    .application-section {
        padding: 60px 0;
        margin-top: 2rem;
    }
}

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

/* Mobile styles for step items and form */
@media (max-width: 768px) {
    .step-item {
        padding: 1.5rem;
    }
    
    .application-form {
        padding: 2rem;
    }
}

.application-form h3 {
    text-align: center;
    color: #d32f2f;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #555;
    border-radius: 8px;
    background: #2a2a2a;
    color: #e0e0e0;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}

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

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.checkbox-item label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    color: #cccccc;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-logo-left,
    .hero-logo-right {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
}

/* Portrait Orientation Fixes */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 60vh;
        padding: 60px 20px 30px;
    }
    
    .hero-content {
        gap: 1rem;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        order: 2;
        flex: 0 0 auto;
        margin: 0 1rem;
        white-space: nowrap;
    }
    
    .hero-logo-left {
        width: 40px;
        height: 40px;
        order: 1;
        flex: 0 0 auto;
    }
    
    .hero-logo-right {
        width: 40px;
        height: 40px;
        order: 3;
        flex: 0 0 auto;
    }
}

/* Chrome Mobile Specific Fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero-background {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        /* Force Chrome to render */
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    .hero-bg-image {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-filter: grayscale(50%) brightness(1.0);
        filter: grayscale(50%) brightness(1.0);
        /* Alternative approach for Chrome */
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* Additional Chrome Mobile Fix */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 0) {
    .hero-bg-image {
        display: block !important;
        visibility: visible !important;
        opacity: 0.50 !important;
    }
    
    .hero-background {
        background-image: url('salon%20face%20photo.svg') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        opacity: 0.50 !important;
    }
}

/* Chrome Mobile Background Fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
    .hero-background {
        background-image: url('salon%20face%20photo.svg') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        opacity: 0.50 !important;
        filter: grayscale(100%) brightness(0.8) !important;
        -webkit-filter: grayscale(100%) brightness(0.8) !important;
        /* Force Chrome to show background */
        display: block !important;
        visibility: visible !important;
        z-index: 1 !important;
        /* Additional Chrome fixes */
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
    
    .hero-bg-image {
        display: none !important;
    }
    
    /* Force hero section to show background */
    .hero {
        background: none !important;
    }
}

/* Ultra Aggressive Chrome Mobile Fix */
@media screen and (max-width: 768px) {
    .hero-background {
        background-image: url('salon%20face%20photo.svg') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        opacity: 0.50 !important;
        filter: grayscale(100%) brightness(0.8) !important;
        -webkit-filter: grayscale(100%) brightness(0.8) !important;
        display: block !important;
        visibility: visible !important;
        z-index: 999 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .hero-bg-image {
        display: none !important;
    }
}

/* Chrome Mobile Nuclear Option */
@media screen and (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('salon%20face%20photo.svg') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .hero-background {
        display: none !important;
    }
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-menu a,
    .cta-button,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Improve mobile navigation */
    .nav-toggle {
        padding: 10px;
        cursor: pointer;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        margin: 3px 0;
    }
}

/* Stylist Profile Styles */
.stylist-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.stylist-card-link:hover {
    transform: translateY(-5px);
}

.stylist-profile {
    padding: 60px 0;
    background: #0a0a0a;
}

.stylist-profile-content {
    max-width: 1200px;
    margin: 0 auto;
}

.stylist-main-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.stylist-photo {
    text-align: center;
}

.stylist-photo-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: #d32f2f;
    margin: 0 auto 1rem;
    border: 3px solid #d32f2f;
}

.stylist-details h2 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.stylist-details .stylist-title {
    color: #d32f2f;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.stylist-specialties {
    margin-bottom: 2rem;
}

.stylist-specialties h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.stylist-specialties ul {
    list-style: none;
    padding: 0;
}

.stylist-specialties li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.stylist-specialties li:before {
    content: "✂️";
    margin-right: 0.5rem;
}

.stylist-contact h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.stylist-contact p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.stylist-contact a {
    color: #d32f2f;
    text-decoration: none;
}

.stylist-contact a:hover {
    text-decoration: underline;
}

.stylist-tags {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: #d32f2f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.stylist-links {
    margin-top: 2rem;
}

.stylist-links h4 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.stylist-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stylist-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.stylist-link.primary {
    background: #d32f2f;
    color: white;
}

.stylist-link.primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.stylist-link.secondary {
    background: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

.stylist-link.secondary:hover {
    background: #d32f2f;
    color: white;
    transform: translateY(-2px);
}

.qr-code-section {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border: 1px solid #333;
}

.qr-code-section h4 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.qr-code-section p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.qr-code-container {
    display: flex;
    justify-content: center;
}

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 2px solid #333;
}

.qr-code.small {
    width: 100px;
    height: 100px;
}

.red-bar {
    width: 100%;
    height: 4px;
    background: #d32f2f;
    margin: 2rem 0;
    border-radius: 2px;
}

.stylist-bio-section {
    background: transparent;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.stylist-bio-section h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.stylist-bio-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Bitcoin Notice Styles */
.bitcoin-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f7931a 0%, #ff9500 100%);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 2px solid #f7931a;
    box-shadow: 0 4px 20px rgba(247, 147, 26, 0.3);
}

.bitcoin-logos-left,
.bitcoin-logos-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bitcoin-logo {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.bitcoin-notice p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    flex-grow: 1;
}

.stylist-gallery {
    margin-bottom: 3rem;
    background: transparent !important;
}

/* Force remove any white backgrounds from stylist page */
.stylist-profile,
.stylist-profile-content,
.stylist-bio-section,
.stylist-gallery,
.gallery-grid,
.gallery-item,
.gallery-image,
.page-header,
main,
section {
    background: transparent !important;
    background-color: transparent !important;
}

/* Override any conflicting gallery styles */
.stylist-gallery .gallery-item,
.stylist-gallery .gallery-image,
.stylist-gallery .gallery-grid {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Force remove white backgrounds from all gallery elements on stylist page */
.stylist-profile .gallery-item,
.stylist-profile .gallery-image,
.stylist-profile .gallery-grid {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.stylist-gallery h3 {
    color: #e0e0e0;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.gallery-item {
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    background: transparent !important;
    box-shadow: none !important;
}

.gallery-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #d32f2f;
    margin-bottom: 1rem;
    border: 2px solid #333;
}

.gallery-item p {
    color: #cccccc;
    font-weight: 500;
}

.gallery-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    margin-bottom: 1rem !important;
    border: 2px solid #333 !important;
    transition: transform 0.3s ease, border-color 0.3s ease !important;
    display: block !important;
    background: transparent !important;
    background-color: transparent !important;
}

.gallery-image:hover {
    transform: scale(1.05) !important;
    border-color: #d32f2f !important;
}

.stylist-cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #d32f2f;
}

.stylist-cta h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.stylist-cta p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Mobile Responsiveness for Stylist Profile */
@media (max-width: 768px) {
    .stylist-main-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stylist-photo-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-image {
        height: auto;
    }
    
    .gallery-video {
        height: 300px;
    }
    
    .gallery-video video {
        object-fit: contain;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stylist-cta {
        padding: 2rem 1rem;
    }
}

/* Form Message Styles */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Accessibility Link Section Styles */
.accessibility-link-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 2px solid #333;
}

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

.accessibility-link-content h2 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.accessibility-link-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.accessibility-link-content .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #d32f2f;
}

.accessibility-link-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

/* Accessibility Statement Page Styles */
.accessibility-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 0;
    margin-top: 2rem;
    border-top: 2px solid #333;
}

.accessibility-content {
    max-width: 1000px;
    margin: 0 auto;
}

.accessibility-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #e0e0e0;
    font-size: 2.5rem;
}

.accessibility-content h3 {
    color: #d32f2f;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.accessibility-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.accessibility-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.accessibility-feature:hover {
    transform: translateY(-5px);
    border-color: #d32f2f;
}

.accessibility-feature h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.accessibility-feature ul {
    list-style: none;
    padding: 0;
}

.accessibility-feature li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 1rem;
}

.accessibility-feature li::before {
    content: "✓";
    color: #4caf50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.accessibility-contact {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    margin-top: 2rem;
}

.accessibility-contact h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

.accessibility-contact ul {
    list-style: none;
    padding: 0;
}

.accessibility-contact li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.accessibility-standards {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    margin-top: 2rem;
}

.accessibility-standards h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

.accessibility-standards p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.accessibility-standards ul {
    list-style: none;
    padding: 0;
}

.accessibility-standards li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 1rem;
}

.accessibility-standards li::before {
    content: "•";
    color: #d32f2f;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mobile Responsiveness for Accessibility Section */
@media (max-width: 768px) {
    .accessibility-section {
        padding: 2rem 0;
    }
    
    .accessibility-content h2 {
        font-size: 2rem;
    }
    
    .accessibility-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .accessibility-feature {
        padding: 1rem;
    }
    
    .accessibility-contact {
        padding: 1.5rem;
    }
}

