* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: url('../images/ind6.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.top-ribbon {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
    z-index: 1000;
}

.ribbon-link {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 10px;
    cursor: pointer;
}

.ribbon-link:hover {
    text-decoration: underline;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
}

.dropdown-content a {
    color: #4CAF50;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.content-container {
    margin-top: 60px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    width: 100%;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 40px;
}

.section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.section img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.section div {
    flex: 1;
    min-width: 200px;
}

h2 {
    margin-top: 0;
}

.footer-note {
    text-align: center;
    width: 100%;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    margin-top: auto;
}

.footer-note a {
    color: #4CAF50;
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

.footer-note p {
    margin: 5px 0;
}

.footer-note span {
    display: inline-block;
    margin: 0 5px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-left: 5px;
}

@media (min-width: 768px) {
    .section {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .section {
        flex-direction: column;
    }

    .section img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
