* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f8ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #4d47ff;
}

.nav-menu {
    display: none;
}

.nav-button {
    background-color: #4d47ff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #3b35cc;
}

/* Hero Section */
.hero {
    background-image: url("media/hero.png");
    background-size: cover;
    background-position: center;
    background-color: #f5f8ff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    color: #252432;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background-color: #4d47ff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #3b35cc;
}

/* Action Section */
.action-section {
    padding: 80px 0;
    background-color: #f5f8ff;
}

.action-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.action-text {
    flex: 1;
}

.action-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #252432;
}

.action-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.action-image {
    flex: 1;
}

.action-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px grey;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: #f5f8ff;
}

.stats-content {
    text-align: center;
    background-color: #e4e5ff;
    padding: 60px;
    border-radius: 20px;
}

.stats-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #252432;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: bold;
    color: #4d47ff;
    display: block;
}

.stat-label {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f5f8ff;
}

.testimonials-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #252432;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.testimonial-card {
    background-color: #f8f9ff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e6e8ff;
    flex: 1;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    width: 20px;
    height: 20px;
    background-image: url("media/icon-star.png");
    background-size: cover;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url("media/avatar.png");
    background-size: cover;
}

.author-info h4 {
    font-weight: bold;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f5f8ff;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 72px;
    font-weight: bold;
    color: #252432;
    line-height: 1.1;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4d47ff;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    background-color: #4d47ff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #3b35cc;
}

/* Footer */
.footer {
    background-color: white;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 48px;
    font-weight: bold;
    color: #4d47ff;
    margin-bottom: 20px;
}

.footer-text {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4d47ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
    padding: 15px 20px;
    }

    .hero-content h1 {
    font-size: 36px;
    }

    .action-content,
    .contact-content {
    flex-direction: column;
    text-align: center;
    }

    .stats-grid,
    .testimonials-grid {
    flex-direction: column;
    }

    .contact-text h2 {
    font-size: 48px;
    }
}