* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f6f8fc;
    color: #172033;
    line-height: 1.6;
}

/* Header */

header {
    background: white;
    padding: 20px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #2563eb;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #172033;
    font-weight: 600;
}

nav a:hover {
    color: #2563eb;
}

/* Hero */

.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 7%;
    background: white;
}

.hero-content {
    max-width: 850px;
}

.hero h1 {
    font-size: 58px;
    margin-bottom: 15px;
}

.hero h1 span {
    color: #2563eb;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 19px;
    color: #5d6678;
    max-width: 700px;
    margin: 0 auto 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #eaf0ff;
    color: #2563eb;
}

.btn-secondary:hover {
    background: #dce7ff;
}

/* Sections */

section {
    padding: 80px 7%;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.section-title p {
    color: #667085;
    max-width: 650px;
    margin: auto;
}

/* Packages */

.packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.package {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid #e8ebf2;
    position: relative;
    transition: 0.3s;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.package.popular {
    border: 2px solid #2563eb;
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 25px;
    background: #2563eb;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.package h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.price {
    font-size: 35px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 20px;
}

.package-description {
    color: #667085;
    margin-bottom: 20px;
}

.package ul {
    list-style: none;
    margin-bottom: 25px;
}

.package li {
    margin-bottom: 10px;
}

.package li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    margin-right: 10px;
}

/* Domain & Hosting */

.info-section {
    background: white;
}

.info-container {
    max-width: 1000px;
    margin: auto;
}

.info-box {
    background: #f6f8fc;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.info-box h3 {
    margin-bottom: 15px;
    font-size: 23px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    margin-bottom: 10px;
}

.note {
    margin-top: 20px;
    padding: 20px;
    background: #eef4ff;
    border-radius: 10px;
    font-weight: 600;
}

/* Important */

.important-box {
    max-width: 850px;
    margin: auto;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.important-box ul {
    margin-top: 20px;
    padding-left: 20px;
}

.important-box li {
    margin-bottom: 10px;
}

/* Contact */

.contact {
    background: #172033;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact p {
    color: #cbd2df;
    max-width: 650px;
    margin: 0 auto 30px;
}

/* Footer */

footer {
    background: #101625;
    color: #aeb7c7;
    text-align: center;
    padding: 25px;
}

/* Mobile */

@media (max-width: 768px) {

    header {
        padding: 16px 5%;
    }

    nav {
        display: none;
    }

    .hero {
        min-height: 70vh;
        padding: 60px 5%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero h2 {
        font-size: 23px;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 60px 5%;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .packages {
        grid-template-columns: 1fr;
    }

    .package {
        padding: 25px;
    }

    .price {
        font-size: 30px;
    }

    .contact h2 {
        font-size: 30px;
    }
}