/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #001F3F; /* Darker navy for a more elegant look */
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

header {
    text-align: center;
    margin-bottom: 80px;
}

header h1 {
    font-size: 52px;
    color: #DFFF00; /* Yellow */
    margin-bottom: 15px;
    font-weight: 700;
}

header p {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.mission {
    background-color: #1A1A2E;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.mission:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.mission h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #FFFFFF;
    font-weight: 700;
}

.mission-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mission-text {
    flex: 1;
    padding-right: 50px;
}

.mission-text p {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 400;
}

.mission-icon svg {
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
}

.mission-icon:hover svg {
    transform: rotate(5deg);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background-color: #1A1A2E;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon svg {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 26px;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-card p {
    font-size: 18px;
    font-weight: 400;
}

.story {
    background-color: #1A1A2E;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.story:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.story h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #FFFFFF;
    font-weight: 700;
}

.story p {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 400;
}

.start-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin: 0 auto;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.start-button:hover {
    background-color: #388E3C;
    transform: scale(1.05);
}

.button-icon {
    margin-right: 15px;
}

@media (max-width: 768px) {
    .mission-content {
        flex-direction: column;
        text-align: center;
    }

    .mission-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}