* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
    background: #0c0c1d;
    color: white;
}

/* HERO */

.about-hero {
    text-align: center;
    padding: 120px 10%;
    background: linear-gradient(120deg, #111132, #1a1a40);
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-hero p {
    max-width: 650px;
    margin: auto;
    opacity: 0.85;
}

/* ============================= */
/* IMAGE SECTION */
/* ============================= */

.about-image-section {
    padding: 70px 20px;
    background: #ffffff;
}

.about-image-container {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 40px;

    max-width: 1100px;
    margin: auto;

    flex-wrap: wrap;
}

.about-image img {
    width: 450px;
    max-width: 100%;

    border-radius: 12px;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.about-image-content {
    max-width: 520px;
}

.about-image-content h2 {
    color: #0a2a66;
    margin-bottom: 15px;
}

.about-image-content p {
    color: #374151;
    line-height: 1.7;
}

/* ABOUT GRID */

.about-section {
    padding: 80px 10%;
}

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

.about-card {
    background: #14143a;
    padding: 35px;
    border-radius: 12px;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(45deg, #4a4aff, #9a4dff);
}

/* ============================= */
/* WHY SECTION */
/* ============================= */

.why-section {
    background: #ffffff;
    padding: 70px 20px;
    text-align: center;
}

.why-section h2 {
    color: #0a2a66;

    margin-bottom: 40px;

    font-size: 30px;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

    max-width: 1100px;
    margin: auto;
}

.why-card {
    background: #f8fafc;

    padding: 25px;

    border-radius: 12px;

    border: 1px solid #e5e7eb;
}

.why-card h3 {
    color: #2563eb;

    margin-bottom: 10px;
}

.why-card p {
    color: #374151;
}

/* TRUST */

.trust-section {
    padding: 80px 15%;
    text-align: center;
    background: #111132;
}

.trust-section p {
    max-width: 700px;
    margin: auto;
    margin-top: 15px;
    opacity: 0.85;
}

/* ============================= 
    NOTE SECTION 
 ============================= */

.note-section {
    background: #fff3cd;
    padding: 20px;
    text-align: center;
    font-size: 15px;
    color: #92400e;
}

/* FOOTER */

.footer {
    background: #050510;
    padding: 50px 10%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.footer-links ul {
    list-style: none;
    margin: 10px 0;
}

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

.footer-map iframe {
    width: 100%;
    height: 150px;
    border: none;
    border-radius: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    opacity: 0.7;
}

.rights {
    margin-top: 10px;
}