* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    /*background: url('hero-bg.jpg') no-repeat center center/cover;*/
    color: black;
    height: 100vh;
    
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5px;
	display:flex;
}

.hero-content {
    /*max-width: 1000px;*/
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.cta-btn {
    background-color: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #c0392b;
}

.hero-image{
	/*background: url('hero-bg.jpg') no-repeat center center/cover;*/
	padding: 5px;
	float:right;
}

.hero-image img {
	max-width: 800px;
    border-radius: 5px;
    display: block;
    margin: 5px auto;
}

/* Features Section */
.features {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 10px;
    max-width: 300px;
}

.feature img {
    width: 50px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
}

/* CTA Section */
.cta-section {
    padding: 50px 20px;
    background-color: #333;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section .cta-btn {
    background-color: white;
    color: #bbb;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
}

.cta-section .cta-btn:hover {
    background-color: #bbb;
}

/* Footer Section */
footer {
    background-color: #ddd;
    color: black;
    padding: 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 10px;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-bottom: 1px;
}

.social-links li {
    display: inline;
}

.social-links a {
    color: white;
    text-decoration: none;
}

.privacy-policy {
    color: black;
    text-decoration: none;
}

.privacy-policy:hover {
    color: white;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero  {
			    flex-direction: column;
    }
	

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero-image img {
        max-width: 400px;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 20px 0;
    }

    .cta-section h2 {
        font-size: 2em;
    }

    .cta-section .cta-btn {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
	.hero  {
			    flex-direction: column;
    }
    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .hero-image img {
        max-width: 350px;
    }

    .cta-section h2 {
        font-size: 1.8em;
    }

    .cta-section .cta-btn {
        font-size: 1em;
    }

    .features h2 {
        font-size: 2em;
    }

    .feature h3 {
        font-size: 1.3em;
    }

    .feature p {
        font-size: 0.9em;
    }
}
