Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #50e3c2;
+ --background-color: #f4f7f6;
+ --text-color: #333;
+ --white: #ffffff;
+ --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ .hero {
+ background: url('hero-bg.jpg') no-repeat center center/cover;
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: var(--white);
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ }
+
+ .cta-button {
+ background: var(--gradient);
+ color: var(--white);
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 5px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: var(--primary-color);
+ }
+
+ .services, .features, .trust, .cta {
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .service-cards, .feature-list {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
+ }
+
+ .card, .feature {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ margin: 1rem;
+ width: 30%;
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover, .feature:hover {
+ transform: translateY(-10px);
+ }
+
+ .icon-delivery, .icon-package, .icon-errand, .icon-fast, .icon-reliable, .icon-professional {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .trust .reviews {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
+ }
+
+ .review {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ margin: 1rem;
+ width: 45%;
+ }
+
+ .cta {
+ background: var(--gradient);
+ color: var(--white);
+ }
+
+ footer {
+ background: var(--text-color);
+ color: var(--white);
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
+ }
+
+ .footer-section {
+ margin: 1rem;
+ }
+
+ .footer-section h3 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ padding: 0;
+ }
+
+ .footer-section ul li {
+ margin-bottom: 0.5rem;
+ }
+
+ .footer-section ul li a {
+ color: var(--white);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .card, .feature, .review {
+ width: 100%;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content p {
+ font-size: 1rem;
+ }
+ }