body {
    font-family: sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #555;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e2e6ea;
}

#hero {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.domain-input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.domain-input-group input[type="text"] {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
    max-width: 100%;
}

.domain-input-group button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Features Section */
#features {
    padding: 3rem 0;
    background-color: #fff; /* Or a slightly different background if preferred */
    text-align: center;
}

#features h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.feature-item {
    background-color: #f8f9fa; /* Light background for each feature item */
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
}

.feature-icon {
    font-size: 2rem; /* Placeholder - adjust when icons are added */
    margin-bottom: 1rem;
    color: #007bff; /* Example icon color */
    /* In a real scenario, this would be an <img>, <i> with icon font, or SVG */
    /* For placeholder, let's add some basic styling */
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #e7f3ff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* What Is Section */
#what-is {
    padding: 3rem 0;
    background-color: #f8f9fa; /* Alternating background color */
}

#what-is .container {
    max-width: 800px; /* More focused content width */
    text-align: center;
}

#what-is h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.what-is-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

/* How To Section */
#how-to {
    padding: 3rem 0;
    background-color: #fff;
    text-align: center;
}

#how-to h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #333;
}

.how-to-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-item {
    background-color: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #007bff;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.step-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Why Choose Us Section */
#why {
    padding: 3rem 0;
    background-color: #f8f9fa; /* Alternating background */
    text-align: center;
}

#why h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #333;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.why-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    /* Add a subtle shadow or keep it flat */
}

.why-item h3 {
    font-size: 1.2rem;
    margin-top: 1rem; /* If using icons above */
    margin-bottom: 0.5rem;
    color: #007bff;
}

.why-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* FAQ Section */
#faq {
    padding: 3rem 0;
    background-color: #fff;
}

#faq .container {
    max-width: 800px; /* Good width for FAQs */
    margin: 0 auto;
}

#faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.faq-accordion .faq-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.faq-question {
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question .faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
}

/* Footer */
footer {
    background-color: #f8f9fa; /* Changed from #333 to light grey */
    color: #555;          /* Changed from #fff to dark grey for readability */
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem; /* Space above footer */
    border-top: 1px solid #eee; /* Added a top border for separation */
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}
