:root {
    --navy: #0B1F3A;
    --coral: #FE623A;
    --light: #F8FAFC;
    --dark: #1F2937;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Navigation */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
}

.logo {
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 200px;
    height: 200px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
    transition: .3s;
}

.nav-links a:hover {
    color: var(--coral);
}

.nav-btn {
    text-decoration: none;
    background: var(--coral);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero */

.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8%;
    background:
        linear-gradient(rgba(11, 31, 58, .9),
            rgba(11, 31, 58, .85)),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1600');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-btn {
    background: var(--coral);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.secondary-btn {
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.secondary-pricing-btn {
    margin-top: 15px;
    border: 2px solid var(--coral);
    background: transparent;
    color: var(--coral);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.secondary-pricing-btn:hover {
    background: var(--coral);
    color: white;

}

.primary-btn:hover {
    background: white;
    color: var(--coral);
    border: 2px solid var(--coral);
}

/* Sections */

.section {
    padding: 50px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card,
.pricing-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
}

.card h3,
.pricing-card h3 {
    color: var(--coral);
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    margin-top: 20px;
}

.card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(11, 31, 68, .08);
    font-size: .95rem;
}

.card ul li:last-child {
    border-bottom: none;
}

.card p {
    margin-top: 10px;
    color: var(--dark);
}

.pricing-card {
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--coral);
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-card li {
    margin: 10px 0;
}

.featured {
    border: 3px solid var(--coral);
}

/* About */

.about-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 1.1rem;
}

/* Contact */

.contact-section {
    background: var(--navy);
    color: white;
    padding: 100px 8%;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: auto;
}

.contact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-container p {
    margin-bottom: 30px;
}

/* Footer */

footer {
    background: #071326;
    color: white;
    text-align: center;
    padding: 25px;
}

/* Responsive */

@media(max-width:768px) {

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}