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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #0b1020, #111827, #1e1b4b);
    color: #ffffff;
    line-height: 1.6;
}

/* Hero Section */
.about-hero {
    min-height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.18), rgba(124, 58, 237, 0.18));
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -80px;
    left: -80px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.12);
    filter: blur(60px);
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -80px;
    right: -80px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.12);
    filter: blur(60px);
}

.about-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-hero-content p {
    font-size: 18px;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

/* Main About Section */
.about-section {
    padding: 70px 20px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.about-left,
.about-right {
    flex: 1 1 500px;
}

.about-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-left p {
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 18px;
}

/* Point Cards */
.about-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.point-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.point-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.point-card p {
    font-size: 15px;
    color: #d1d5db;
    margin-bottom: 0;
}

/* Right Info Boxes */
.info-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.info-box p {
    color: #d1d5db;
    font-size: 16px;
}

/* Footer Section */
.about-footer {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(30, 27, 75, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 800px;
    margin: auto;
}

.footer-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-content p {
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 25px;
}

.back-btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: #ffffff;
    font-weight: 700;
    transition: all 0.35s ease;
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.25);
}

.back-btn:hover {
    background: linear-gradient(135deg, #06b6d4, #4f46e5);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(79, 70, 229, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-left h2 {
        font-size: 30px;
    }

    .footer-content h2 {
        font-size: 28px;
    }
}