/* style.css */

.disclosure-service {
    font-size: 12px;
}

.main-section, .datasources-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.about-us, .our-purpose {
    margin-bottom: 20px;
}

.datasources {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.datasource {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    position: relative;
    height: 15rem;
}

.datasource:hover {
    transform: scale(1.02);
}

p {
    line-height: 1.6;
    color: #555;
}

.toggle-button {
    color: #0088cc;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    border: none;
    background-color: transparent;
}

.hidden {
    display: none;
}
.shown {
    display: block;
}

.toggle-button:hover {
    color: #005580;
    cursor: pointer;
}
.button-container {
    text-align: center;
    position: absolute;
    bottom: 1.2rem;
    right: 1rem;
}

/* Additional styling for specific datasources */
.google {
    background-color: #e8f6fe;
}
.datasource p {
    font-size: 14px;
}
.datasources .google {
    display: flex;
    flex-direction: column;
}
.datasources > div > h3 {
    margin-bottom: 20px;
}
.google-details a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
}
#disclosure {
    font-size: 13px;
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.termsofuse {
    max-width: 800px;
    margin: 0 auto;
}
.adform {
    background-color: #c5c5c562;
}
.linkedin {
    background-color: #e5f3ea;
}

.facebook {
    background-color: #ebe5fd;
}

.snapchat {
    background-color: #f9f5e6;
}

.tiktok {
    background-color: #f3ebf7;
}
.pinterest {
    background-color: #ffc3c3;
}
.readpeak {
    background-color: #599da683;
}
/* Add any other specific styling for new datasources */
