@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.disclaimer-section {
    padding: 60px 20px;
    background: #fff;
}

.disclaimer-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    /* <-- centers image vertically */
}

.disclaimer-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* center vertically */
}

.disclaimer-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    object-fit: cover;
}

.disclaimer-content {
    flex: 1.3;
}

.disclaimer-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: justify;
    color: #ff2f71;
}

.disclaimer-content h3 {
    margin-top: 25px;
    color: #333;
    text-align: justify;
}

.disclaimer-content p {
    color: #555;
    line-height: 1.7;
    margin-top: 10px;
    text-align: justify;
}

.disclaimer-content a {
    color: #ff2f71;
    text-decoration: none;
    font-weight: 600;
}

.disclaimer-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .disclaimer-container {
        flex-direction: column;
        text-align: left;
    }

    .disclaimer-image {
        justify-content: center;
    }

    .disclaimer-image img {
        max-width: 100%;
    }
}

.terms-section {
    padding: 60px 20px;
    background: #fff;
}

.terms-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    /* centers content & image vertically */
}

/* CONTENT LEFT */
.terms-content {
    flex: 1.3;
}

.terms-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff2f71;
}

.terms-content h3 {
    margin-top: 25px;
    color: #333;
}

.terms-content p {
    color: #555;
    line-height: 1.7;
    margin-top: 10px;
    text-align: justify;
}

/* IMAGE RIGHT */
.terms-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terms-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .terms-container {
        flex-direction: column-reverse;
        /* Image bottom, content top */
        text-align: left;
    }

    .terms-image img {
        max-width: 100%;
    }
}

.privacy-section {
    padding: 60px 20px;
    background: #fff;
}

.privacy-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    /* Center image + content vertically */
}

/* IMAGE LEFT */
.privacy-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    object-fit: cover;
}

/* CONTENT RIGHT */
.privacy-content {
    flex: 1.3;
}

.privacy-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff2f71;
}

.privacy-content h3 {
    margin-top: 25px;
    color: #333;
}

.privacy-content p {
    color: #555;
    line-height: 1.7;
    margin-top: 10px;
}

.privacy-content a {
    color: #ff2f71;
    text-decoration: none;
    font-weight: 600;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .privacy-container {
        flex-direction: column;
        text-align: left;
    }

    .privacy-image img {
        max-width: 100%;
    }
}

.about-section {

    background: #fff;
}

/* Top image */
.about-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.about-image img {
    width: 30%;

    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
}

/* Main content */
.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-header h1 {
    font-size: 36px;
    color: #ff2f71;
    margin-bottom: 10px;
}

/* Tagline under logo/header */
.tagline {
    font-size: 18px;
    color: #444;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-container p {
    color: #555;
    line-height: 1.8;
    margin-top: 10px;
    text-align: justify;
}

.about-container h3 {
    margin-top: 30px;
    color: #333;
    text-align: justify;
}

.about-list {

    padding-left: 0;
    margin-top: 15px;
}

.about-list li {
    padding: 8px 0;
    color: #555;
    line-height: 1.7;
}

.about-ending {
    margin-top: 30px;
    font-weight: 600;
    color: #222;
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 25px 50px;
        /* More side padding for better spacing */
    }

    .about-container {
        padding: 0 5px;
        /* Add inner padding */
    }

    .about-header h1 {
        font-size: 30px;
    }

    .tagline {
        font-size: 16px;
    }

    .about-image {
        padding: 0 10px;
        /* Adds spacing around the image */
    }
}