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

body {
    font-family: Inter, sans-serif;
    background: #252525;
    color: white;
    line-height: 1.5;
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

/* Header */
.header {
    background: #272727;
    padding: 0.5rem 1rem;
}

.logo {
    height: 53px;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    font-size: 12px;
}

.nav .btn-primary {
    background: linear-gradient(to bottom, #0A7CFF, #0054B5);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: bold;
    border: 1px solid rgba(138, 192, 255, 0.78);
}

/* Intro Section */
.intro-section {
    background: url(../images/bg1.png);
    background-size: cover;
    text-align: center;
    padding: 2rem 1rem;
}

.intro-section h1 {
    font-size: 24px;
    line-height: 21px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.intro-section .highlight {
    color: #ffffff;
    font-weight: 700;
}

 .brand {
    color: #3C97FF;
    font-weight: 700;
}

.intro-section p {
    max-width: 600px;
    font-weight: 600;
    margin: 0 auto;
    font-size: 13px;
    line-height: 21px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* Form Section */
.form-section {
    margin-top: -60px;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    padding-bottom: 0;
}

.form-container {
    background-color: #1f2937;
    padding: 2rem;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.form-container h2 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

::placeholder {
    color: rgba(255, 255, 255, 0.84);
}

form input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 1px solid #4b5563;
    background-color: #111827;
    color: white;
}

form input::placeholder {
    color: #ffffff;
}

.phone-group {
    display: flex;
    align-items: center;
    background-color: #111827;
    border: 1px solid #4b5563;
    border-radius: 6px;
    padding-left: 0.5rem;
    overflow: hidden;
}

.phone-group .flag {
    white-space: nowrap;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.phone-group input {
    border: none;
    background: none;
    flex: 1;
    padding: 0.75rem 0.5rem;
    color: white;
}

/* Button */
.btn-primary.full {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    background: linear-gradient(to bottom, #0979F9, #0156B9);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary.full:hover {
    background-color: #1d4ed8;
}

/* Trust Section */
.trust-section {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 2rem;
}

.trust-bg {
    background: url('../images/bg2.png') no-repeat center center;
    background-size: cover;
    padding: 0.4rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trust-card {
    padding: 0.1rem;
    border-radius: 12px;
    color: white;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    text-align: left;
}

.trust-card p {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
}

.trust-icon {
    width: 150px;
    height: auto;
    border-radius: 12px;
}

/* Accordion Section */
.accordion-section {
    padding: 2rem 1rem;
    background-color: #111827;
}

.accordion-section .container {

    display: flex;
    flex-direction: column;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    background: linear-gradient(to bottom, #1d4ed8, #3b82f6);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    text-align: left;
}

.accordion-header img {
    width: 28px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header img {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 1.25rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px; /* enough for long content */
    padding-bottom: 1rem;
}

.accordion-content p {
    color: white;
    font-size: 0.9rem;
    padding-top: 1rem;
    line-height: 1.5;
}
