/* General Body Styles */
body {
    background-color: #f0f2f5;
    color: #333;
    font-family: 'Inter', sans-serif;
}

/* Header Styles */
.crew-header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../images/social-media-marketing.jpg') no-repeat center center/cover;
    color: #fff;
}

.crew-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.crew-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

/* Packages Section */
#packages-container {
    padding: 40px 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.package-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27c5e0;
    margin-bottom: 15px;
}

.package-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00aaff;
    margin-bottom: 10px;
}

.package-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: #777;
}

.package-card .platforms {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.package-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.package-card .features li {
    padding: 8px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.package-card .features li i {
    color: #27ae60;
    margin-right: 10px;
}

.package-card .note {
    margin-top: auto;
    font-style: italic;
    color: #555;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.package-card .btn {
    display: block;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(45deg, #ff8a00, #e52e71);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s ease;
}

.package-card .btn:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .crew-title {
        font-size: 2.5rem;
    }

    .crew-description {
        font-size: 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px; /* Add some horizontal padding */
    }
}
