/* Basic Reset & General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    /* Clear floats */
    padding: 0 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3 {
    margin-bottom: 15px;
    color: #333;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

p {
    margin-bottom: 10px;
}

ul {
    list-style: none;
}

.icon {
    vertical-align: middle;
    margin-right: 5px;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    border-bottom: #007bff 3px solid;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    padding: 5px 10px;
}

header nav ul li a:hover {
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.hero .tagline {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.hero .pricing {
    margin-bottom: 30px;
}

.hero .price strong {
    font-size: 2.2em;
    color: #28a745;
    /* Green for price */
}

.hero .payment-plan {
    font-size: 1.1em;
    color: #555;
}

.hero .contact-info {
    margin-top: 20px;
    font-size: 1.1em;
}

.hero .contact-info img {
    width: 24px;
    height: 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    text-decoration: none;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
    border: 1px solid #6c757d;
}

.btn-secondary:hover {
    background-color: #545b62;
    text-decoration: none;
}

.btn-link {
    background: none;
    color: #007bff;
    padding: 10px 0;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Features Section */
.features {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* Allow items to wrap on smaller screens */
    gap: 20px;
    /* Space between items */
    margin-top: 20px;
}

.feature-item {
    flex-basis: calc(33.333% - 20px);
    /* Adjust for gap */
    min-width: 280px;
    /* Minimum width before wrapping */
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 50%;
    /* if using actual images */
    object-fit: contain;
}

/* FAQ Section */
.faq {
    padding: 40px 0;
    background: #f4f4f4;
}

.faq h2 {
    text-align: center;
}

.faq-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2em;
    color: #007bff;
}

/* Other Domains Section */
.other-domains {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.other-domains ul {
    margin-top: 15px;
}

.other-domains ul li {
    margin-bottom: 8px;
}

.other-domains ul li a {
    font-size: 1.1em;
}


/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0 20px;
    text-align: left;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    /* Ensure columns don't get too squished */
}

.footer-column h4 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a,
.footer-column p a {
    color: #ccc;
}

.footer-column ul li a:hover,
.footer-column p a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-column p .icon {
    filter: brightness(0) invert(1);
    /* Make placeholder icons white */
}


.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9em;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav {
        margin-top: 15px;
    }

    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        flex-basis: 100%;
        max-width: 400px;
        /* Max width for single column items */
    }

    .footer-columns {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }

    .hero .price strong {
        font-size: 1.8em;
    }
}