* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f9;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #243b55;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #141e30, #243b55);
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background: #ff6a00;
    padding: 14px 30px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.btn:hover {
    background: #ff8c1a;
}

/* PRICING SECTION */
.pricing {
    text-align: center;
    padding: 80px 20px;
    background: #f4f6f9;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.pricing-subtext {
    color: #666;
    margin-bottom: 40px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    padding: 30px 20px;
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.price {
    font-size: 28px;
    color: #ff6a00;
    margin-bottom: 15px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.price-card ul li {
    margin: 8px 0;
    font-size: 14px;
}

.featured {
    border: 2px solid #ff6a00;
    transform: scale(1.05);
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: white;
}

.domain-search {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.domain-search input,
.domain-search select {
    padding: 12px;
    font-size: 16px;
    border: none;
    outline: none;
}

.domain-search input {
    width: 250px;
    border-radius: 5px 0 0 5px;
}

.domain-search select {
    border-left: 1px solid #ddd;
}

.domain-search button {
    padding: 12px 20px;
    background: #ffcc00;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0 5px 5px 0;
}

.domain-search button:hover {
    background: #ffaa00;
}

@media (max-width: 600px) {
    .domain-search {
        flex-direction: column;
    }

    .domain-search input,
    .domain-search select,
    .domain-search button {
        width: 100%;
        border-radius: 5px;
        margin: 5px 0;
    }
}