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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

header .logo img {
    width: 200px;
    /* Set the desired size of the logo */
}

#hero {
    background: #4CAF50;
    color: white;
    padding: 80px 0;
    text-align: center;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-btn {
    background: #333;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

#domain-search {
    text-align: center;
    padding: 50px;
}

#domain-search input {
    padding: 10px;
    font-size: 1rem;
    width: 300px;
    margin-right: 10px;
}

#domain-search button {
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#services, #pricing, #about, #contact, #faq {
    padding: 50px 20px;
    text-align: center;
}

#services h2, #pricing h2, #about h2, #faq h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.service-card, .pricing-card {
    display: inline-block;
    width: 30%;
    margin: 20px;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card h3, .pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-card p, .pricing-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

button {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

footer {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.faq-item {
    background: #fff;
    padding: 20px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}
