/* css/index.css */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 140px 20px;
    position: relative;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.intro {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.intro-content {
    background: #f8fbfd;
    padding: 50px 30px;
    border-radius: var(--radius);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e3f2fd;
    box-shadow: 0 8px 30px rgba(0, 90, 156, 0.05);
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    background: var(--bg-main);
    flex-wrap: wrap;
}

.card {
    background: var(--bg-card);
    padding: 0;
    width: 30%;
    min-width: 280px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-text {
    padding: 30px;
    background: var(--bg-card);
    flex-grow: 1;
}

.card h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
}




.flex-strip {
    display: flex;
    justify-content: space-around;
    background: var(--primary);
    color: white;
    padding: 50px 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.strip-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: var(--radius);
}

.strip-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.strip-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.strip-item a {
    color: white;
    font-weight: 600;
}

.strip-item a:hover {
    color: #e0f2fe;
}
