/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #334155;
    line-height: 1.65;
    background-color: #fff;
}

h1, h3 {
    color: #1e293b;
    font-weight: 600;
}

a {
    color: #046bd2;
    text-decoration: none;
}

a:hover {
    color: #045cb4;
}

/* Mobile View Container */
.mobile-view {
    display: none; /* hidden by default */
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.mobile-view img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Desktop View Container */
.desktop-view {
    display: none; /* hidden by default, shown via media query */
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5em 20px;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 3em;
}

.header-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.main-title {
    font-size: 2.25rem;
    margin-bottom: 1em;
}

/* Content Section */
.content-section {
    margin-bottom: 3em;
    font-size: 1rem;
}

.content-section p {
    margin-bottom: 1.5em;
}

.content-section h1 {
    font-size: 2.25rem;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

/* Flag Image Section */
.flag-section {
    text-align: center;
    margin-bottom: 3em;
}

.flag-section img {
    max-width: 100%;
    height: auto;
}

/* Divider */
.divider {
    border-top: 1px solid #D1D5DB;
    margin: 3em 0;
}

/* Footer Section */
.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 3em;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin: 0;
}

/* Media Queries for responsive toggle */
@media (max-width: 767px) {
    .mobile-view {
        display: block;
    }
}

@media (min-width: 768px) {
    .desktop-view {
        display: block;
    }
}
