/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #36404f;
    color: #e0e0e0;
}

header {
    text-align: right;
    font-size: 1.2em;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 250px 20px;
    background: linear-gradient(135deg, #36404f, #1e88e5);
    color: #ffffff;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-section img {
    margin: 20px 0;
    border-radius: 10px;
}

.hero-section p {
    margin: 10px 0;
    font-size: 1rem;
}

.hero-section a {
    text-decoration: none;
    color: #ffffff;
    background-color: #1e88e5;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.hero-section a:hover {
    background-color: #1167e4;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Footer */
.hero-section footer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #bdbdbd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .hero-section img {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .hero-section img {
        width: 70%;
    }

    .hero-section a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}
