.hero,
body::before {
    background-size: cover;
}
.cta-section,
.divider,
.feature-item,
.hero,
.section-heading,
.section-title,
.service-icon {
    text-align: center;
}
.btn,
.divider span,
.section-title h2 {
    display: inline-block;
}
:root {
    --primary: #f0b000;
    --secondary: #e63946;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Poppins, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    position: relative;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/ZAMPA.webp");
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}
.divider,
.divider span,
.hero,
.section-heading,
.section-title {
    position: relative;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/zampa-security-const-new.webp");
    background-position: center;
    background-repeat: no-repeat;
    color: var(--light);
    padding: 220px 0;
    
}
.benefits-container,
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Button styles with !important */
.btn {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
    padding: 12px 30px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: 0.3s !important;
    border: none !important;
    cursor: pointer !important;
}
.btn:hover {
    background-color: #d89e00 !important;
    transform: translateY(-2px) !important;
}
.btn-secondary {
    background-color: var(--secondary) !important;
    color: var(--light) !important;
    margin-left: 15px !important;
}
.btn-secondary:hover {
    background-color: #d1323f !important;
}

.section-heading::after,
.section-title h2::after {
    height: 3px;
    background-color: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    position: absolute;
}
.section-heading {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.section-heading::after {
    width: 60px;
}
section {
    padding: 80px 0;
}
.section-title {
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark);
    padding-bottom: 10px;
}
.section-title h2::after {
    width: 80px;
}
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-item,
.feature-item {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.service-icon {
    background-color: var(--primary);
    color: var(--dark);
    font-size: 2.5rem;
    padding: 30px;
}
.service-content {
    padding: 25px;
}
.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.features-section {
    background-color: var(--gray);
}
.benefit-item,
.divider span,
.feature-item {
    background-color: var(--light);
}
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-item {
    padding: 30px 20px;
}
.feature-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
}
.benefit-number {
    background-color: var(--primary);
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}
.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}
.cta-section {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0;
}
.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}
.divider {
    margin: 40px 0;
}
.divider span {
    padding: 0 20px;
    z-index: 1;
    color: var(--primary);
    font-size: 1.5rem;
}
.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
    z-index: 0;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        display: block;
        width: 80%;
        margin: 0 auto 15px;
    }
    .btn-secondary {
        margin-left: auto;
    }
    section {
        padding: 60px 0;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
}