:root {
    --primary-color: #d62828;
    --secondary-color: #f77f7f;
    --accent-color: #f8edeb;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
    background-color: #fffefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 60px;
}

.hero {
    background-color: var(--accent-color);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    background-image: linear-gradient(120deg, #f8edeb 0%, #f9dcc4 100%);
}

h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.section {
    padding: 30px 0;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.section-text {
    flex: 1;
    min-width: 300px;
}

.section-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.how-it-works {
    background-color: var(--accent-color);
    padding: 60px 0;
    margin: 60px 0;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 220px;
    text-align: center;
    position: relative;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}


.cta {
    text-align: center;
    margin: 60px 0;
}

.cta-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.cta-btn:hover {
    background-color: #b51e1e;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
}

#contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}

.social-link:hover {
    color: var(--secondary-color);
}

.user-types {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.user-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 260px;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.user-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-content {
        flex-direction: column;
    }
    
    .hero {
        padding: 40px 0;
    }
}

.mission-vision-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-box,
.vision-box {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mission-box h3,
.vision-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    .mission-vision-container {
        gap: 3rem;
    }
}