.custom-home-wrapper {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 80px 0;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section h2 {
        font-size: 28px;
    }
}