/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f0f4f8;
    color: #2b3a42;
}

/* Header Styles */
header {
    background: #4a90e2;
    color:#fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #50e3c2;
}

/* Hero Section */
#hero {
    background: linear-gradient(to right, #4a90e2, #50e3c2);
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
}

/* Main Sections */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;
    max-width: 1200px;
}

.pillar {
    background: #eaf1f6;
    margin: 1rem 0;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar h2 {
    color: #4a90e2;
    margin-bottom: 1rem;
}

.pillar p {
    margin-bottom: 1.5rem;
    color: #333;
}

.pillar .button {
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: #50e3c2;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.pillar .button:hover {
    background: #4a90e2;
}

/* Flexbox for Columns */
.row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.column {
    flex: 1;
    padding: 10px;
}

.text {
    order: 1;
    text-align: justify;
}

.image {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Footer */
footer {
    background: #4a90e2;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul li {
        margin: 10px 0;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .pillar {
        width: 90%;
        padding: 1.5rem;
    }

    .row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    #hero {
        padding: 3rem 1rem;
    }

    #hero h1 {
        font-size: 1.8rem;
    }

    #hero p {
        font-size: 0.9rem;
    }

    .pillar {
        padding: 1rem;
    }

    footer {
        font-size: 0.8rem;
    }
}