* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    text-shadow: none !important;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.page-header {
    padding: 40px 0 20px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: left;
}

/* Hero Section */
.hero-section-work{
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)); */

    background-color: rgb(7, 45, 77);
    background-size: cover;
    background-position: center;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 20px 0;
    border-radius: 10px;
}

.hero-content-work h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content-work p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1038;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Shipping Section */
.shipping-section {
    padding: 80px 0;
}

.shipping-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.shipping-content {
    flex: 1;
}

.shipping-content h2 {
    font-size: 2.5rem;
    color: #2d4059;
    margin-bottom: 20px;
}

.shipping-content h3 {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.shipping-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.shipping-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shipping-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Shipping Options Section */
.shipping-options {
    padding: 20px 15px;
    /* background-color: #f1f5f9; */
}

.options-heading {
    text-align: center;
    margin-bottom: 90px;
}

.options-heading h2 {
    font-size: 2.5rem;
    color: #2d4059;
}

.option {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.option:nth-child(even) {
    flex-direction: row-reverse;
}

.option-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.option-image img {
    width: 100%;
    height: auto;
    display: block;
}

.option-content {
    flex: 1;
}

.option-content h3 {
    font-size: 2rem;
    color: #2d4059;
    margin-bottom: 20px;
}

.option-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.features {
    margin-top: 20px;
}

.features li {
    margin-bottom: 10px;
    list-style-type: none;
    padding-left: 30px;
    position: relative;
}

.features li:before {
    content: "✓";
    color: #4ecdc4;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1516253593875-bd7ba052fbc5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin: 60px 0;
    border-radius: 10px;
}

.trust-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-content h3 {
    font-size: 1.8rem;
    color: #4ecdc4;
    font-weight: 500;
}

/* Why Choose Us Section */
.choose-us {
    padding: 80px 0;
}

.choose-us-heading {
    text-align: center;
    margin-bottom: 60px;
}

.choose-us-heading h2 {
    font-size: 2.5rem;
    color: #2d4059;
}

.choose-us-heading p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 20px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #4ecdc4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #2d4059;
    margin-bottom: 15px;
}

.feature-item p {
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .shipping-container, .option {
        flex-direction: column;
    }
    
    .option:nth-child(even) {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content-work h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}