/* Basic Reset */
* {
    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: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #ffffff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

header .logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff; /* Primary brand color */
    text-decoration: none;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #555;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #0056b3; /* Darker primary color on hover */
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: #007bff;
    color: #ffffff;
}

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

.secondary-btn {
    background: #6c757d;
    color: #ffffff;
}

.secondary-btn:hover {
    background: #5a6268;
}

.large-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/__openclaw__/media/tool-image-generation/image-1---979f629d-b729-46a2-90eb-24f077be4372.jpg') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections General */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-child(even) {
    background-color: #e9ecef;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.service-item h3 {
    color: #007bff;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #007bff;
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1rem;
}

.pricing-card ul li::before {
    content: '✅';
    margin-right: 10px;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto; /* Pushes button to the bottom */
}

/* Footer */
footer {
    background: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .auth-buttons .btn {
        width: 100%;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }
}
