* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    padding-bottom: 70px; /* กันโดน footer navbar บัง */
}

.container {
    width: 100%;
    background-color: #ffffff;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 1. Header Title Block */
.title-bar {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* 2. Title Image Badge */
.title-image-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.badge-pink {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
}

.bar-cyan {
    width: 8px;
    height: 36px;
    background-color: #00e5ff;
    border-radius: 4px;
}

/* 3. Hero Banner Image */
.hero-banner {
    background-image: url('../Photo/ttkhead.jpg');
    background-size: cover;          /* จัดรูปให้ขยายพอดีกรอบ ไม่แตก/ล้น */
    background-position: center;     /* จัดจุดโฟกัสรูปไว้ตรงกลาง */
    background-repeat: no-repeat;    /* ไม่ให้รูปซ้ำ */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #ffffff;                  /* ตัวหนังสือสีขาว */
}

/* Content Sections */
.content-section {
    padding: 0 8px;
    color: #333333;
    font-size: 15px;
    line-height: 1.5;
}

.section-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.accent-line {
    width: 3px;
    height: 20px;
    background-color: #ff3366;
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.header-text {
    font-size: 16px;
    font-weight: 500;
}

.cyan-text {
    color: #33d6d6;
}

.body-paragraph {
    margin-bottom: 20px;
    padding-left: 11px;
}

.custom-list {
    list-style-type: disc;
    padding-left: 28px;
    margin-bottom: 24px;
}

.custom-list li {
    margin-bottom: 8px;
}

.dynamic-cta-container {
    margin-top: 16px;
    text-align: center;
}

.dynamic-text-row {
    text-align: left;
    padding-left: 28px;
    margin-bottom: 20px;
}

.btn-contact {
    display: block;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 14px;
    font-size: 18px;
    border-radius: 12px;
    transition: background-color 0.2s;
}

.btn-contact:hover {
    background-color: #222222;
}
