body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f5f3;
    display: flex;
    justify-content: center;
}

.container {
    width: 900px;
    position: relative; /* Added for pseudo-element positioning */
}

header {
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee; /* Added light grey border */
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    /* Placeholder for logo - you can replace this with an <img> tag or an SVG */
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensure image stays within rounded corners if border-radius is kept */
}

.logo-img { /* Style for the actual image */
    max-width: 100%;
    max-height: 100%;
    display: block; /* Removes extra space below image */
    object-fit: contain; /* Ensures aspect ratio is maintained and image fits */
}

.title-subtitle h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
    margin-top: 10px;
    margin: 0;
    color: #333;
}

.title-subtitle {
    padding-top: 10px;
}

.title-subtitle p {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #666;
    margin-top: 2px; /* Add a small top margin to control the gap */
}

.contact-button {
    background-color: #765eae;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
.contact-button:hover {
    background-color: #614d94;
}

.filters {
    padding: 20px 40px;
}

.filters button {
    padding: 8px 15px;
    margin-right: 10px;
    background-color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    border: 2px solid #d6d6d6;
    font-weight: 500;
    font-size: 15px;
    color: #765eae;
}
.filters button:hover, .filters button.active {
    color: #333;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0px;
}

.domain-card {
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.domain-card:hover {
    transform: translateY(-5px);
}

.domain-card img {
    width: 100%;
    object-fit: cover;
    background-color: #eee; /* Placeholder color */
}

.domain-card-info {
    padding: 15px;
}

.domain-card-info h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #333;
    text-align: center;
}

.domain-card-info .price {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #007bff;
    font-weight: 400;
    margin-bottom: 15px;
}

.buy-button {
    display: block;
    width: calc(100% - 20px);
    background-color: white;
    color: #765eae;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin: 0 auto 6px auto; /* Centering the button */
    border: 1px solid #d6d6d6;
}
.buy-button:hover {
    background-color: #39395a;
    color: white;
}

.hero-section {
    text-align: center; /* Center align text content */
    padding: 40px 20px; /* Add some padding */
}

.hero-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px; /* Larger font size for the main title */
    color: #333;
    margin-bottom: 10px;
}

.hero-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #666;
}

.filters-container {
    display: flex; /* Use flexbox to center the filters section */
    justify-content: center; /* Center horizontally */
}

.contact-cta {
    text-align: center;
    padding: 40px 0px;
    padding-bottom: 100px;
    border-bottom: 1px solid #eee;
}

.contact-cta p {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

/* Re-using .contact-button style, no need to redefine if it's the same */

footer {
    text-align: center;
    padding: 30px 20px;
}

footer p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding-left: 15px; /* Add some padding on the sides */
        padding-right: 15px;
    }

    .domain-grid {
        grid-template-columns: 1fr; /* Display 1 card per row */
        padding: 20px 15px; /* Add horizontal padding for mobile */
    }

    .hero-section h2 {
        font-size: 40px; /* Adjust hero title size for mobile */
    }

    .hero-section p {
        font-size: 20px; /* Adjust hero subtitle size for mobile */
    }

    .domain-card-info h3 {
        font-size: 24px;
    }

    .title-subtitle h1 {
        font-size: 23px; /* Further Adjust header title size */
    }

    .title-subtitle p {
        font-size: 13px; /* Adjust header subtitle size */
    }

    header .contact-button {
        font-size: 14px;
        padding: 14px 17px;
    }
    
    .filters {
        display: flex; /* Arrange buttons in a row */
        overflow-x: auto; /* Allow horizontal scrolling if buttons overflow */
        padding: 15px 0px; /* Adjust padding for filters */
        justify-content: flex-start; /* Align buttons to the start */
    }

    .filters button {
        margin-right: 5px; /* Reduce margin for filter buttons */
        padding: 8px 10px; /* Adjust padding for filter buttons */
        white-space: nowrap; /* Prevent button text from wrapping */
    }
    
    .contact-cta p {
        font-size: 22px; /* Adjust CTA text size */
    }

    .buy-button {
        font-size: 16px; /* Increase button text size for mobile */
        padding: 12px; /* Increase button padding for mobile */
    }

    /* FAQ Section - Mobile */
    .faq-section div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important; /* Single column on mobile */
        gap: 20px !important;
    }
    
    .faq-section {
        padding: 60px 15px !important; /* Better mobile padding */
    }
} 