body {
    margin-top: 20px;
    background-image: url('../images/background-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Container with transparency */
.container.py-5 {
    background-color: rgba(22, 195, 208, 0.24);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Keep your original jumbotron style but reduce bottom margin */
.jumbotron {
    background: linear-gradient(135deg, #b9e1de 0%, #0ac9cc7a 100%);
    color: white;
    padding: 3rem 2rem; /* Reduced from 4rem to 3rem */
    border-radius: 15px;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
}

/* Rest of your original CSS - keep unchanged */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}
.card:hover {
    transform: translateY(-2px);
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo styling */
.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(2.00);
}

.alert {
    border-radius: 8px;
}
.btn {
    border-radius: 6px;
}
.form-control {
    border-radius: 6px;
}
.table th {
    border-top: none;
    font-weight: 600;
}
.badge {
    font-size: 0.8em;
}

/* Mobile-first responsive improvements */
@media (max-width: 768px) {
    /* Better container spacing */
    .container.py-5 {
        padding: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    /* Jumbotron optimization */
    .jumbotron {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }
    
    .jumbotron h1 {
        font-size: 1.8rem;
    }
    
    /* Card improvements */
    .card {
        margin-bottom: 1rem;
    }
    
    /* Button sizing */
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    /* Form optimization */
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Table responsiveness */
    .table-responsive {
        font-size: 0.85rem;
    }
    
    /* Product cards stack properly */
    .col-md-4 {
        margin-bottom: 1rem;
    }
}

/* Very small devices */
@media (max-width: 576px) {
    .jumbotron h1 {
        font-size: 1.5rem;
    }
    
    .jumbotron .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Stack buttons vertically */
    .d-md-flex .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Touch-friendly buttons */
.btn {
    min-height: 44px; /* Minimum touch target size */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Improve form touch targets */
.form-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Featured cards styling */
.feature-card {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.feature-card h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Mobile responsiveness for features */
@media (max-width: 768px) {
    .feature-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .feature-img {
        width: 60px;
        height: 60px;
    }
}

/* Service features styling */
.service-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features h6 {
    color: #2D4A2D; /* Dark green for better contrast */
    font-weight: 600;
}

.pricing-info h6 {
    color: #2D4A2D; /* Dark green for better contrast */
    font-weight: 600;
}

.legal-info {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-info h6 {
    color: #2D4A2D; /* Dark green for better contrast */
}

.cta-section h5 {
    color: #2D4A2D; /* Dark green for better contrast */
    font-weight: 700;
}

/* Better text contrast */
.text-muted {
    color: #3A5C3A !important; /* Medium green - better contrast */
}

small {
    color: #2D4A2D; /* Dark green for best readability */
}

/* Ensure all text has good contrast */
.service-features small,
.pricing-info small {
    color: #2D4A2D; /* Dark green */
    font-weight: 500;
}