/* Base reset and theme */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f1115;
    color: #f1f1f1;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #4fc3f7;
}

h1, h2, h3 {
    margin: 0 0 0.5em;
    line-height: 1.2;
}

/* Container and layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 0;
}

/* Hero section */
.hero {
    background: linear-gradient(to right, #1a1c20, #111);
    text-align: center;
    padding: 6rem 2rem;
    animation: fadeIn 1s ease-in;
}

.hero h1 {
    font-size: 3rem;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #ccc;
}

.hero .cta-button {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #4fc3f7;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero .cta-button:hover {
    background-color: #29b6f6;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin: 4rem 1rem;
}

.feature-card {
    flex: 1 1 calc(33% - 2rem);
    background-color: #1c1e24;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: #4fc3f7;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1000px;
    padding: 2rem;
    border-radius: 12px;
    background-color: #141619;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #1c1e24;
    padding: 1.5rem;
    border-left: 6px solid #4fc3f7;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.step:hover {
    background-color: #23252d;
}

.step-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4fc3f7;
    min-width: 40px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: #ffffff;
}

.step-content p {
    margin: 0;
    color: #ccc;
}

/* Testimonials */
.testimonials {
    background-color: #141619;
    padding: 0.5rem 2rem;
    text-align: center;
}

.testimonial {
    max-width: 600px;
    margin: 2rem auto;
    font-style: italic;
    color: #ccc;
}

.testimonial strong {
    display: block;
    margin-top: 1rem;
    color: #4fc3f7;
}

/* Pricing section */
.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0rem 2rem 4rem 2rem;
    background-color: #0f1115;
}

.pricing-card {
    background: #1c1e24;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    width: 300px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.pricing-card .price {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4fc3f7;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
    color: #bbb;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
}

.pricing-card .select-button {
    background-color: #4fc3f7;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.pricing-card .select-button:hover {
    background-color: #29b6f6;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    background-color: #1a1c20;
    font-size: 0.9rem;
    color: #777;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .steps {
        padding: 1rem;
    }

    .step {
        flex-direction: column;
        align-items: stretch;
    }

    .step-number {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}
