/* styles.css */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Header Section */
header {
    text-align: center;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    
}

header img {
    width: 400px;
    display: block;
  margin: auto;
}

header h1 {
    margin: auto;
    font-size: 24px;
    color: #666;
    line-height: 1.6;
}

header p {
    margin-top: 30px;
    color: #666;
    line-height: 1.6;
    
}

header ul {
    color: #666;
    line-height: 1.6;
    text-align: justify;
    list-style-type: none;
}

/* Main Section */
main {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Columns */
.column {
    flex: 1;
    margin: 0 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column h2 {
    color: #5a5a5a;
    font-size: 22px;
    margin-bottom: 15px;
}

.column p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

.column li {
    color: #666;
    line-height: 1.6;
    text-align: justify;
    list-style-type: disc;
}

/* Hover effect for columns */
.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }

    .column {
        margin-bottom: 20px;
    }
}

footer {
    background-color: #333;
    color: #f4f4f9;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #444;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin: 10px 20px;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: #d9534f;
    font-size: 18px;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-note {
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }

    .column {
        margin-bottom: 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}
