/* Reset dasar */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

h2{
    font-size: 1.5em;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(135deg, #d32f2f, #ff6f61);
    color: #fff;
    text-align: center;
    padding-top:5px;
    padding-bottom:20px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    /*
    align-items: center;
    */
    padding-top: 25px;
    padding-bottom: 50px;
    padding-right: 50px;
    padding-left: 50px;
    background: #fff;
}

.hero-text {
    width: 90%;
}


.hero img {
    width: 80%;
    margin-bottom:20px;
    border-radius: 10px;
}


.cta-button {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #b71c1c;
}

/* Features Section */
.features {
    margin-bottom:40px;
    display: flex;
   flex-wrap: wrap;
    background: #fff;
}

.feat p{
    font-size: 0.8rem;
}

.feature {
    text-align: center;
    width: 30%;
}

.feat img {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}
