body {
    font-family: 'Poppins', sans-serif;
  }
  .terms-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 28px;
    margin-top: 50px;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Main title */
.terms-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
}

/* Section block */
.terms-section {
    margin-bottom: 40px;
}

/* Header section: icon + title side by side */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

/* Icon area */
.icon-placeholder {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Icon itself */
.icon-placeholder img {
    width: 100%;
    height: auto;
}

/* Section subtitle */
.section-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

/* Paragraph text */
.content p {
    margin: 10px 0;
    text-align: justify;
    line-height: 1.6;
    font-size: 16px;
    color: #444;
}


/* Subscribe Section Styles */
.subscribe-section {
    background-color: #faf6f0;
    padding: 40px 20px;
}

.subscribe-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.form-groupsub {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    position: relative;
}

.form-groupsub input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.form-groupsub input:focus {
    border-color: #e86333;
}

.mobile-input {
    display: flex;
    align-items: center;
    position: relative;
}

.country-code {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
    background-color: white;
    padding: 4px;
}

.country-code img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.dropdown-arrow {
    font-size: 10px;
    color: #999;
    margin-left: 2px;
}

.mobile-input input {
    padding-left: 60px;
}

.subscribe-btn {
    padding: 15px 40px;
    background-color: #e86333;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.subscribe-btn:hover {
    background-color: #d55425;
}


/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .terms-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 18px;
    }

    .content p {
        text-align: left;
        font-size: 15px;
    }

    .icon-placeholder {
        width: 24px;
    }

    .terms-section {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .terms-title {
        font-size: 22px;
        margin-bottom: 25px;
        margin-top: 40px;
    }

    .section-title {
        font-size: 16px;
    }

    .icon-placeholder {
        width: 20px;
        margin-right: 10px;
    }

    .content p {
        font-size: 14px;
    }

    .terms-container {
        padding: 30px 15px;
    }
}