/* General Body Styles */
body {
    font-family: 'Lato', sans-serif; /* Or 'Roboto', 'Open Sans' */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333; /* Dark grey for body text */
    background-color: #f8f8f8; /* Light grey background */
}

.container {
    max-width: 1000px; /* Max width for content */
    margin: 0 auto;
    padding: 0 20px; /* Padding on sides for mobile responsiveness */
}

/* Headings */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif; /* Or 'Open Sans' */
    color: #333; /* Darker grey for headings */
    text-align: center;
    margin-bottom: 20px;
}

h1 { font-size: 2.5em; } /* Adjust for mobile */
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
}

.button.primary {
    background-color: #007bff; /* Deep Blue / Accent Color */
    color: white;
    border: 2px solid #007bff;
}

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

.button.secondary {
    background-color: transparent;
    color: #007bff; /* Deep Blue / Accent Color */
    border: 2px solid #007bff;
}

.button.secondary:hover {
    background-color: #e6f2ff; /* Light blue hover */
}

.button.outline {
    background-color: transparent;
    color: #333;
    border: 2px solid #ccc;
}

.button.outline:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #0056b3, #007bff); /* Example gradient, or use a solid color/image */
    color: white;
    padding: 80px 0; /* Adjust padding for mobile */
    text-align: center;
}

.hero-section h1 {
    color: white;
    font-size: 2.8em; /* Mobile adjustment */
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    flex-direction: column; /* Stack buttons on mobile */
    align-items: center;
    gap: 15px; /* Space between buttons */
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: white;
}

.features-grid {
    display: flex;
    flex-direction: column; /* Stack features on mobile */
    gap: 30px;
    text-align: center;
}

.feature-item .icon {
    font-size: 3em;
    color: #007bff; /* Accent color */
    margin-bottom: 10px;
}

/* Featured Categories Section */
.featured-categories {
    padding: 60px 0;
    background-color: #f0f6ff; /* Light blue tint */
}

.categories-grid {
    display: flex;
    flex-direction: column; /* Stack categories on mobile */
    gap: 30px;
    margin-bottom: 40px;
}

.category-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.random-domains {
    text-align: center;
    margin-top: 40px;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: white;
}

.steps-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column; /* Stack steps on mobile */
    gap: 30px;
    text-align: center;
}

.steps-list li {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Contact Funnel Section */
.contact-funnel {
    padding: 60px 0;
    background-color: #e6f2ff; /* Lighter blue background */
    text-align: center;
}

.contact-funnel .intro-text {
    font-size: 1.1em;
    margin-bottom: 40px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in element's total width */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
}

.direct-contact-info {
    margin-top: 30px;
    font-size: 1.1em;
}

.direct-contact-info a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}

.direct-contact-info a:hover {
    text-decoration: underline;
}

.direct-contact-info .fas {
    margin-right: 8px;
}


/* Footer */
footer {
    background-color: #333; /* Dark charcoal */
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* --- Mobile Responsiveness (Media Queries) --- */
@media (min-width: 768px) {
    h1 { font-size: 3.5em; }
    h2 { font-size: 2.5em; }

    .hero-ctas {
        flex-direction: row; /* Buttons side-by-side on larger screens */
        justify-content: center;
    }

    .features-grid,
    .categories-grid {
        flex-direction: row; /* Items in a row on larger screens */
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-item {
        flex: 1; /* Distribute space evenly */
        max-width: 30%; /* Adjust based on number of items */
    }

    .category-item {
        flex: 1;
        max-width: 30%; /* Adjust based on number of items */
    }

    .steps-list {
        flex-direction: row; /* Steps in a row on larger screens */
    }

    .steps-list li {
        flex: 1;
    }
}

/* Optional: Even larger screens */
@media (min-width: 1024px) {
    .container {
        padding: 0; /* Remove side padding on very large screens if content is centered */
    }
}
