/* General Styles */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'StencilBold', sans-serif; } .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; } /* Navbar */ .navbar { background: #fff; padding: 1rem 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; } .navbar .container { display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.5rem; font-weight: bold; color: black; } .logo span { color: #e63946; } .nav-phone { text-decoration: none; color: black; font-weight: bold; } /* Hero Section */ .hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1588854337115-1c67d9247e4d?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); background-size: cover; background-position: center; color: #fff; padding: 100px 0; text-align: center; } .hero h1 { font-size: 3rem; margin-bottom: 1rem; } .hero h1 span { color: #D2B48C; } /* Buttons */ .btn { display: inline-block; padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; margin: 10px; transition: 0.3s; } .btn-primary { background: #e63946; color: #fff; } .btn-secondary { background: #fff; color: #333; } .btn:hover { opacity: 0.9; transform: translateY(-2px); } /* Services */ .services { padding: 60px 0; } .section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; } .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } .service-card { background: #fff; padding: 30px; border-radius: 8px; text-align: center; border-bottom: 4px solid #D2B48C; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } /* Trust Section */ .trust { background: #D2B48C; color: #fff; padding: 40px 0; text-align: center; } .trust .container { display: flex; justify-content: space-around; flex-wrap: wrap; } .trust-item { margin: 20px; } footer { text-align: center; padding: 20px; font-size: 0.9rem; color: #777; } /* Mobile Responsive */ @media (max-width: 768px) { .hero h1 { font-size: 2rem; } }