.home-wrapper {
    padding: 60px 40px;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 60px;
    box-sizing: border-box;
}

.hero-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}

.hero-subtitle {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 25px;
}

.hero-btn {
    padding: 12px 25px;
    background-color: #1e1e1e;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid #333;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #333;
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.section-text {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 15px;
    max-width: 800px;
}

.values-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ccc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #eee;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.call-to-action {
    text-align: center;
    padding: 40px;
    background-color: #111;
    border-radius: 20px;
}

.call-to-action h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-btn {
    padding: 12px 30px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #ccc;
}

@media screen and (max-width: 768px) {
    .home-wrapper {
        padding: 30px 20px;
        gap: 40px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-text {
        font-size: 14px;
    }

    .call-to-action h2 {
        font-size: 20px;
    }
}
