body {
    margin: 0;
    font-family: Onest, sans-serif;
    background: #fff;
    color: #111;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.dot {
    color: #ff5b5b;
}

.menu-icon, .search-icon {
    font-size: 20px;
    cursor: pointer;
}

.meta {
    font-size: 13px;
    color: #666;
    padding: 10px 16px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.dot-separator::before {
    margin: 0 6px;
    color: #999;
}

.content {
    padding: 0 16px 40px;
    padding-bottom: 0;
}

.title {
    font-size: 18px;
    font-weight: bold;
    margin: 12px 0;
}

.news-image {
    position: relative;
    margin-bottom: 12px;
}

.news-image img {
    width: 100%;
    border-radius: 8px;
}

.img-caption {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: rgba(0, 128, 128, 0.9);
    color: #fff;
    font-weight: bold;
    padding: 6px 8px;
    font-size: 13px;
    line-height: 1.2;
    border-radius: 4px;
}

.text {
    font-size: 15px;
    line-height: 1.5;
    margin: 12px 0;
}

.highlight {
    color: #16a093;
}

.ceo {
    margin-top: 20px;
    text-align: center;
}

.ceo img {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
}

.ceo-caption {
    text-align: left;
    font-size: 11px;
    color: #808080;
    margin-top: 1px;
}

/* --- Form Section --- */
.form-section {
    display: flex;
    justify-content: center;
    margin: 30px 16px;
}

.verification-form {
    background: linear-gradient(to bottom, #15A397, #5BE1D5);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.verification-form input[type="text"],
.verification-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 15px;
}

.phone-input {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 0 10px;
    margin-bottom: 10px;
}

.flag-icon {
    width: 24px;
    height: auto;
    margin-right: 6px;
}

.phone-code {
    margin-right: 6px;
    color: #333;
}

.phone-input input {
    border: none;
    flex: 1;
    padding: 12px 8px;
    font-size: 15px;
    outline: none;
}

.form-note {
    font-size: 13px;
    color: #fff;
    margin: 12px 0;
    line-height: 1.4;
}

.verification-form button {
    background-color: #2b7b73;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

/* --- Footer Section --- */
.footer {
    background: #f5f5f5;
    padding: 20px 16px;
    font-size: 13px;
    color: #444;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.source-label,
.source-name {
    font-weight: bold;
}

.dot-red {
    color: red;
    margin: 0 6px;
}

.share-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons {
    height: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 100px;
}

.footer-right {
    text-align: right;
}

.simpals-logo {
    width: 100px;
    margin-bottom: 10px;
}

.footer-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-left ul li {
    margin: 6px 0;
    cursor: pointer;
}

.store-icons img {
    width: 100px;
    margin: 6px 6px 0 0;
}

.store-icons {
    display: flex;
    justify-content: space-between;
}

