/* Reuse variables from homepage */
:root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #0077b3;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #F44336;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --control-bg: rgba(0, 51, 102, 0.9);
    --focus-color: #ff9900;
}

/* Reuse base styles from homepage */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 12px;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--focus-color);
    outline-offset: 2px;
}

/* Header and Nav styles */
header {
    padding: 1rem;
    background: var(--secondary-color);
    position: relative;
    z-index: 100;
}

.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    height: 80px;
    width: 250px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    max-width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0 0.5rem;
    position: relative;
}

#search {
    padding: 0.8rem 1rem;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
    width: 280px;
    transition: all 0.3s ease;
    max-width: 100%;
}

#search::placeholder {
    color: rgba(255, 255, 255, 0.95);
}

#search:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.search-button {
    background: transparent;
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-button:hover, .search-button:focus {
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.search-button:focus {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
}

.search-button {
    background: #ffffff;
    color: #003366;
}

.search-button:hover, .search-button:focus {
    background: #f0f0f0;
    color: #0056b3;
}

nav {
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 90;
}

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

nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    justify-content: center;
    transition: transform 0.3s ease;
}

nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover,
nav a:focus {
    color: var(--primary-color);
}

nav a:focus {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Statement Hero Section */
.statement-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.7;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.compliance-badge i {
    font-size: 1.5rem;
}

.hero-illustration {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 300px;
}

.accessibility-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    height: 100%;
    width: 100%;
}

.icon-wheelchair, 
.icon-eye, 
.icon-ear, 
.icon-brain {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: pulse 3s infinite;
}

.icon-wheelchair {
    color: #ff9a9e;
    animation-delay: 0s;
}

.icon-eye {
    color: #a1c4fd;
    animation-delay: 0.5s;
}

.icon-ear {
    color: #84fab0;
    animation-delay: 1s;
}

.icon-brain {
    color: #ffecd2;
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Commitment Section */
.commitment-section {
    padding: 4rem 0;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
    font-weight: 600;
}

.section-heading::after {
    content: '';
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.commitment-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.commitment-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.commitment-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.commitment-icon {
    flex: 0 0 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.commitment-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.compliance-details {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.compliance-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.compliance-details p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.conformance-chart {
    margin-top: 2rem;
}

.conformance-level {
    height: 40px;
    background: #e9ecef;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.level-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--success-color), #2ecc71);
    border-radius: 20px;
}

.level-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 600;
    z-index: 2;
}

.level-percent {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 600;
    z-index: 2;
}

/* Technical Section */
.technical-section {
    padding: 4rem 0;
    background: var(--light-bg);
    border-radius: 10px;
    margin: 4rem 0;
}

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

.spec-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.spec-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.spec-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.spec-card ul {
    list-style: none;
    text-align: left;
}

.spec-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.spec-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.browser-support {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.browser-support h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.browser-support p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.browser-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.browser-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.browser-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Improvement Section */
.improvement-section {
    padding: 4rem 0;
}

.improvement-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.improvement-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.improvement-list {
    margin-top: 2rem;
}

.improvement-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-bg);
}

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

.status {
    flex: 0 0 140px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    height: fit-content;
}

.status i {
    font-size: 1.2rem;
}

.status.in-progress {
    background: rgba(255, 193, 7, 0.1);
    color: #b28704;
}

.status.planned {
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
}

.status.completed {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
}

.improvement-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.improvement-details p {
    color: var(--text-light);
    margin-bottom: 0;
}

.timeline {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
}

.timeline h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-date {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: var(--text-light);
}

/* Feedback Section */
.feedback-section {
    padding: 4rem 0;
    background: var(--light-bg);
    border-radius: 10px;
    margin: 4rem 0;
}

.feedback-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.feedback-intro {
    flex: 1;
    min-width: 300px;
}

.feedback-intro p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.feedback-form {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--focus-color);
    border-color: var(--accent-color);
}

button[type="submit"] {
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

button[type="submit"]:hover {
    background: #0088cc;
}

button[type="submit"]:focus {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
}

/* Enforcement Section */
.enforcement-section {
    padding: 4rem 0;
}

.enforcement-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.enforcement-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem 0;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.compliance-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
}

.compliance-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.compliance-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover, .cta-button:focus {
    background: #0088cc;
    transform: translateY(-2px);
    outline: none;
    border-color: white;
}

.cta-button:focus {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
}

/* Footer styles */
footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

footer h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

footer a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
    padding-left: 15px;
}

footer a:hover::before {
    opacity: 1;
    left: 0;
}

footer a:focus {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .statement-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .commitment-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feedback-content {
        flex-direction: column;
    }
    
    .process-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .improvement-item {
        flex-direction: column;
    }
    
    .status {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .statement-hero {
        padding: 3rem 1.5rem;
    }
    
    .compliance-badge {
        width: 100%;
        justify-content: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}