background: var(--secondary); color: #fff; padding: 14px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; transition: all 0.3s; border: 2px solid var(--secondary); } .btn:hover { background: transparent; color: var(--secondary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); } .btn-outline { background: transparent; color: var(--secondary); margin-left: 15px; } .btn-outline:hover { background: var(--secondary); color: #fff; } /* Services Section */ .services { background: #fff; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-title h2:after { content: ''; position: absolute; width: 60px; height: 3px; background: var(--secondary); bottom: -10px; left: 50%; transform: translateX(-50%); } .section-title p { color: #7f8c8d; max-width: 700px; margin: 20px auto 0; font-size: 1.1rem; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: #f8f8f8; border-radius: 8px