/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* General Body */
body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #111;
    color: #fff;
}

.navbar .logo h1 {
    font-size: 24px;
    letter-spacing: 1px;
}

.navbar .nav-links a {
    color: #fff;
    margin: 0 14px;
    text-decoration: none;
    font-size: 16px;
}

.navbar .nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.7), rgba(10, 10, 10, 0.8)), url('hero-background.png');
    background-size: cover;
    background-position: center center;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
}

.cta-button {
    background-color: #FFB400;
    color: #111;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e08d00;
}

/* Section */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.section-odd {
    background-color: #222;
}

.section-odd h2 {
    color: #fff;
}

.feature-list, .pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.plan {
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.plan-pro {
    background-color: #FFD966;
    color: #111;
}

.feature-item h3, .plan h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-item p, .plan p {
    font-size: 16px;
    color: #555;
}

.plan ul {
    list-style: none;
    padding-left: 0;
}

.plan ul li {
    margin: 5px 0;
}

.plan {
    border: 2px solid #555;
}

/* How It Works Section */
.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    width: 22%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    color: #555;
}

.step img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Call to Action Section */
.cta-section {
    background-color: #111;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #FFB400;
    color: #111;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e08d00;
}

.plan {
    position: relative;
    padding-bottom: 70px; /* Adjust as needed */
    margin-bottom: 30px;
}

.plan-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center; /* Center the button horizontally */
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    z-index: 1;
}

.hero h2 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #FFB400;
    color: #111;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e08d00;
}

.logo-img {
    width: 200px;
    height: auto;
}

@media (max-width: 768px) {
.logo-img {
    width: 120px;
}
}

@media (max-width: 480px) {
.logo-img {
    width: 80px;
}
}


/* Add this to your style.css */

/* General styles for the feature list */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    margin: 10px;
}

/* Media query for smartphones */
@media (max-width: 768px) {
    .feature-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .feature-item {
        flex: 1 1 100%;
    }
}

/* Section */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #555;
}

/* Media query for tablets */
@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Media query for smartphones */
@media (max-width: 480px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section */
.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    width: 22%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    color: #555;
}

/* Media query for tablets */
@media (max-width: 768px) {
    .step {
        width: 45%;
    }
}

/* Media query for smartphones */
@media (max-width: 480px) {
    .step {
        width: 100%;
    }
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.social-link {
    text-decoration: none;
    color: #BBB;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff;
}
