/* Basic Reset & Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevents extra space below images */
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3 {
    margin-bottom: 0.75em;
}

h1 {
    font-size: 2.8em;
    color: #2c3e50;
}

h2 {
    font-size: 2em;
    color: #34495e;
    text-align: center;
    margin-bottom: 1em;
}

h3 {
    font-size: 1.4em;
    color: #34495e;
}

/* Header & Navigation */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 1em 0;
    position: sticky;
    /* Optional: makes header stick on scroll */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #ecf0f1;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
    text-decoration: none;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://via.placeholder.com/1200x600?text=Faded+Background+Texture') no-repeat center center/cover;
    /* Fallback background if image fails */
    background-color: #e0e0e0;
    padding: 60px 0;
    text-align: center;
}

#hero h1 span {
    color: #e74c3c;
    /* Highlight color for domain name */
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
}

.cta-button:hover {
    background-color: #c0392b;
    text-decoration: none;
}

.hero-image {
    margin: 20px auto 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Content Sections */
.content-section {
    padding: 50px 0;
    background-color: #fff;
}

.content-section.alt-bg {
    background-color: #f0f4f8;
    /* Light blue-gray for variety */
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.content-grid div {
    padding: 20px;
    background-color: #fff;
    /* For sections with alt-bg */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.content-grid img {
    margin: 0 auto 15px auto;
    max-height: 100px;
    /* Control icon size */
}

.learn-more-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}

#benefits ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

#benefits ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

#benefits ul li img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.decorative-image {
    margin: 20px auto 0;
    border-radius: 8px;
}

/* Contact Section */
#contact p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 1em;
}

#contact .note {
    font-size: 0.9em;
    color: #777;
    font-style: italic;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer p {
    margin-bottom: 5px;
}

footer a {
    color: #3498db;
}

footer a:hover {
    color: #ecf0f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 8px 0;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .content-grid {
        grid-template-columns: 1fr;
        /* Stack items on smaller screens */
    }

    .hero-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    #hero {
        padding: 40px 0;
    }

    h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}