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

body {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover {
    color: #4A90E2;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #4A90E2;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

/* About Hero Section */
.about-hero {
    background: #2c5282;
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: left;
}

/* Why Started Section */
.why-started {
    padding: 80px 0;
    background: white;
}

.why-started h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.why-started p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
    font-weight: 400;
    max-width: 900px;
}

.why-started p:last-child {
    margin-bottom: 0;
}

/* What Makes Different Section */
.what-makes-different {
    padding: 80px 0;
    background: #f8f9fa;
}

.different-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.different-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.different-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
    font-weight: 400;
}

.different-text p:last-child {
    margin-bottom: 0;
}

.different-image {
    width: 100%;
}

.different-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Who's It For Section */
.whos-it-for {
    padding: 80px 0;
    background: white;
}

.for-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.for-image {
    width: 100%;
}

.for-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.for-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.for-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
    font-weight: 400;
}

.for-text p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: #2c5282;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .different-content,
    .for-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .different-text h2,
    .for-text h2,
    .why-started h2 {
        font-size: 1.8rem;
    }

    .different-text p,
    .for-text p,
    .why-started p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
  
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .about-hero {
        padding: 100px 0 50px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .why-started,
    .what-makes-different,
    .whos-it-for {
        padding: 60px 0;
    }

    .different-image img,
    .for-image img {
        height: 250px;
    }
}
.why-started{
    margin-top: 60px;
}