/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Body Styling ===== */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f2f2f2; /* soft white shade */
    color: #333;
}

/* ===== Header ===== */
header {
    background-color: black;
    display: flex;
    justify-content: space-between;
    
}

/* Logo */
header img {
    width: 100px;
    height: auto;
}

/* Navbar */
navbar {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0px 15px
}

/* Navbar Links */
navbar a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Hover Effect */
navbar a:hover {
    text-decoration: underline;
}

/* ===== Main Section ===== */
main {
    padding: 50px;
    background-color: #f7f7f7; /* slight white shade */
}

/* Section Cards Container */
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Individual Card */
section {
    background-color: white;
    width: 45%;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover */
section:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Section Headings */
section h2 {
    color: #ff7a00; /* professional orange shade */
    margin-bottom: 15px;
    font-size: 22px;
}

/* Paragraph */
section p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== Footer ===== */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    
    main {
        padding: 20px;
    }

    section {
        width: 100%;
    }

    header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px;
    }

    navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}