body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: white;
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .logo img {
    width: 32px;
    height: 32px;
}

.register-count {
    font-weight: normal;
    color: #999;
}

.hero {
    background: url('../images/bg1.png') no-repeat left;
    background-size: cover;
    padding: 30px;
    padding-bottom: 80px;
    padding-top: 5px;
    text-align: center;
}

.hero h1 {
    font-size: 23px;
    line-height: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero .highlight {
    font-size: 20px;
    text-align: left;
    font-weight: bold;
    color: #ff0;
    margin-bottom: 20px;
}

.hero .desc {
    font-size: 18px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.payments {
    display: flex;
    justify-content: center;
    gap: 20px;
    filter: brightness(0) invert(1);
}

.payments img {
    height: 32px;
    object-fit: contain;
}

.form-section {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.form-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.form-header img {
    width: 40px;
    height: 40px;
}

.form-header span {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.phone-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}

.phone-prefix {
    display: flex;
    align-items: center;
    background: #eaeaea;
    padding: 0 10px;
    gap: 6px;
    font-size: 16px;
}

.phone-prefix img {
    width: 24px;
    height: 16px;
}

.phone-group input[type="tel"] {
    flex: 1;
    border: none;
    padding: 14px;
    font-size: 16px;
}

form button {
    width: 100%;
    padding: 14px;
    background: #f44336;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #d9322a;
}

.quote-section {
    background: #f0f0f0;
    padding: 20px;
    padding-top: 0;
    margin-top: 50px;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.quote-left {
    flex: 1 1 280px;
    display: flex;
    align-items: center;
    text-align: center;
}

.president-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    margin-top: -30px;
}

.president-info h3 {
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.president-info p {
    text-align: left;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin: 5px 0 0;
}

.quote-text {
    flex: 2 1 600px;
    font-size: 14px;
    line-height: 1.6;
    color: #111;
    position: relative;
}

.quote-text .quote-mark {
    font-size: 80px;
    color: rgba(255, 0, 0, 0.1);
    line-height: 1;
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: serif;
}

.features-section {
    background: url('../images/bg2.png') center center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 15px;
}

.features-overlay {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 10px;
}

.features-overlay h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px dashed white;
    position: relative;
}

.feature-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.feature-text p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.highlight {
    color: #ff5b42;
    font-weight: 600;
}

.note {
    font-size: 14px;
    color: #ccc;
}

.faq-section {
    padding: 20px;
    background: #fff;
    color: black;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
}

.faq-container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ff4a2d;
    margin: 10px auto 0;
    border-radius: 3px;
}

.faq-box {
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 25px 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    align-items: flex-start;
    gap: 20px;
}

.faq-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-icon img {
    width: 32px;
    height: 32px;
}

.faq-icon h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.faq-content p {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.advantages-section {
    background: linear-gradient(to bottom right, #f44336, #ff5733);
    color: white;
    padding: 20px;
}

.advantages-container {
    max-width: 800px;
    margin: 0 auto;
}

.advantages-container h2 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
}

.advantages-container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.advantage-item img {
    width: 28px;
    height: 28px;
    margin-top: 3px;
}

.advantage-item p {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.security-section {
    background: #f8fdfa;
    padding: 20px;
    color: black;
}

.security-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.security-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
}

.security-container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ff4a2d;
    margin: 10px auto 0;
    border-radius: 3px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.security-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.security-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.security-card p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.cta-section {
    background: #0b101c;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-content {
    max-width: 450px;
    margin-bottom: -20px;
}

.cta-content h2 {
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
}

.cta-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 0 auto;
    margin-top: 10px;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
    justify-content: center;
}

.cta-list img {
    width: 24px;
    height: 24px;
}

/* Reuse form styles */
.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: #000;
    text-align: center;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-header img {
    width: 36px;
    height: 36px;
}

.form-header span {
    font-size: 18px;
    font-weight: 600;
}

.input-wrapper {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.input-wrapper input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.form-card button {
    width: 100%;
    padding: 14px;
    background: #f44336;
    color: white;
    font-size: 17px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-card button:hover {
    background: #d9322a;
}

.final-cta {
    background: #fff;
    padding: 20px;
    text-align: center;
    color: black;
}

.final-cta-content h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 20px;
}

.final-cta-content .red {
    color: #f44336;
}

.final-cta-content .black {
    color: #000;
}

.values {
    font-size: 18px;
    font-weight: 500;
    color: #111;
}

.dot {
    color: #f44336;
    padding: 0 10px;
}

.footer {
    background: #f3f3f3;
    padding: 25px 20px 30px;
    font-size: 14px;
    color: #111;
}

.footer-top {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand img {
    width: 24px;
    height: 24px;
}

.footer-brand span {
    font-weight: 600;
    font-size: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: #111;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.divider {
    color: #999;
}
