* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f7f4;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #6ec6ff, #7e57c2);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-in-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape1 {
    width: 150px;
    height: 150px;
    background: #ffca28;
    top: 20%;
    left: 10%;
    animation: float 8s infinite ease-in-out;
}

.shape2 {
    width: 100px;
    height: 100px;
    background: #26c6da;
    top: 60%;
    right: 15%;
    animation: float 6s infinite ease-in-out 1s;
}

.shape3 {
    width: 70px;
    height: 70px;
    background: #ec407a;
    bottom: 20%;
    left: 20%;
    animation: float 7s infinite ease-in-out 0.5s;
}

.shape4 {
    width: 120px;
    height: 120px;
    background: #66bb6a;
    top: 30%;
    right: 25%;
    animation: float 9s infinite ease-in-out 1.5s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.accessibility {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.accessibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(92, 107, 192, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.accessibility-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.accessibility-text {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
}

.accessibility-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #5c6bc0, #7986cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.accessibility-description {
    font-size: 1.3rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.accessibility-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.accessibility-icon {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(92, 107, 192, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessibility-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(92, 107, 192, 0.2);
}

.symbol-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.accessibility-icon img {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0;
    transform-origin: center center;
}

#wheelchair1 {
    top: 0;
    left: 0;
    z-index: 2;
}

#wheelchair2 {
    top: 0;
    left: 0;
    z-index: 1;
}

.accessibility-media {
    padding: 10px;
    flex: 1;
    min-width: 350px;
    text-align: center;
    position: relative;
}

.accessibility-media video {
    max-width: 100%;
    width: 450px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.accessibility-media video:hover {
    transform: scale(1.02);
}

.animate-symbol1 {
    animation: symbol1-enter 2s ease-out forwards;
}

.animate-symbol2 {
    animation: symbol2-enter 2.5s ease-out forwards 0.5s;
}

@keyframes symbol1-enter {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.2) rotate(-20deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes symbol2-enter {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    70% {
        opacity: 1;
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 968px) {
    .accessibility-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .accessibility-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .accessibility-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .accessibility-icon {
        width: 90px;
        height: 90px;
        padding: 10px;
        margin: 0 auto 1rem auto;
    }

    .symbol-container {
        width: 60px;
        height: 60px;
    }

    .accessibility-icon img {
        width: 60px;
        height: 60px;
    }

    .accessibility-media {
        min-width: 0;
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .accessibility-media > div {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 180px;
        margin: 0 auto;
        padding: 0;
        font-size: 1rem;
    }

    .accessibility-media video {
        width: 100%;
        max-width: 320px;
        min-width: 0;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .accessibility {
        padding: 2rem 0;
    }

    .accessibility-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .accessibility-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .accessibility-icon {
        width: 70px;
        height: 70px;
        padding: 5px;
    }

    .symbol-container {
        width: 40px;
        height: 40px;
    }

    .accessibility-icon img {
        width: 40px;
        height: 40px;
    }

    .accessibility-media > div {
        max-width: 220px;
        min-height: 120px;
        font-size: 0.9rem;
    }

    .accessibility-media video {
        max-width: 220px;
        min-width: 0;
        border-radius: 12px;
    }
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #5c6bc0, #7986cb);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(92, 107, 192, 0.3);
}



.preschool-feature {
    padding: 4rem 0;
    text-align: center;
}

.preschool-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.preschool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.preschool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #ff9a8b, #ff6a88, #ff99ac);
}

.preschool-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #5c6bc0;
}

.preschool-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #666;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #ff9a8b, #ff6a88, #ff99ac);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 106, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 106, 136, 0.6);
}

.ratings {
    padding: 4rem 0;
    background-color: #f0f7ff;
    text-align: center;
}

.ratings-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5c6bc0;
}

.ratings-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.rating-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-5px);
}

.rating-source {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rating-count {
    color: #666;
}

.sections {
    padding: 4rem 0;
    text-align: center;
}

.sections-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5c6bc0;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffca28, #ff9800);
    transition: height 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-card:hover::before {
    height: 10px;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #5c6bc0;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-description {
    color: #666;
    font-size: 1rem;
}

.footer {
    padding: 3rem 0;
    background-color: #f9f7f4;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-text {
    color: #666;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #5c6bc0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background-color: #3949ab;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .preschool-title {
        font-size: 2rem;
    }
    
    .ratings-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .sections-grid {
        grid-template-columns: 1fr;
    }
}
