/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Links */
a {
    text-decoration: none;
    color: #0077cc;
    transition: color 0.3s;
}
a:hover {
    color: #005fa3;
}

/* Header */
header {
    cursor: pointer;
    background-color: #0288d1;
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header content */
.header_box {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.child_1 {
    width: 100px;
    height: 90px;
    object-fit: cover;
}
.child_2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
}

/* Main containers */
.container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* Box items */
.box_1 {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box_1:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.box_1 img {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.p-left {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Main image section */
.image {
    text-align: center;
    margin: 50px auto;
    max-width: 900px;
}
.main-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #444;
}

/* Footer */
footer {
    background-color: #0077cc;
    color: #fff;
    padding: 40px 20px;
    margin-top: 50px;
}
footer .why {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Footer features */
.footer-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    text-align: center;
}
.feature img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
.feature p {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .footer-features {
        flex-direction: column;
        gap: 20px;
    }
    .header_box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
