* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #1a1a1a;
}

.service-list-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #2c2c2c;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f1c40f;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Services Section */
.services-section {
    padding: 60px;
    background: #2c2c2c;
}

.services-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

/* Accordion Items */
.accordion-item {
    background: #3a3a3a;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.accordion-item:hover {
    border-color: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.2);
}

.accordion-item.active {
    border-color: #f1c40f;
    box-shadow: 0 15px 40px rgba(241, 196, 15, 0.3);
}

/* Accordion Header */
.accordion-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #3a3a3a;
}

.accordion-header:hover {
    background: #4a4a4a;
}

.accordion-item.active .accordion-header {
    background: #4a4a4a;
    border-bottom: 2px solid #f1c40f;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #2c2c2c;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.service-icon-placeholder {
    font-size: 2.5rem;
    color: #f1c40f;
}

.service-title {
    flex: 1;
}

.service-title h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-title p {
    color: #b0b0b0;
    font-size: 1rem;
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1c40f;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #2c2c2c;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.service-details {
    padding: 30px;
}

.service-details h4 {
    color: #f1c40f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-details p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-details ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-details li {
    color: #b0b0b0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f1c40f;
    font-weight: bold;
}

/* Contact Info */
.contact-info {
    background: #3a3a3a;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-item {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #f1c40f;
}

/* Highlight Boxes */
.program-highlight,
.care-highlight,
.app-highlight,
.shop-highlight,
.team-highlight {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: #1a1a1a;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

/* Call to Action */
.cta-section {
    padding: 80px 60px;
    background: #3a3a3a;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button.primary {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: #1a1a1a;
    box-shadow: 0 10px 25px rgba(241, 196, 15, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(241, 196, 15, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #f1c40f;
    border: 2px solid #f1c40f;
}

.cta-button.secondary:hover {
    background: #f1c40f;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241, 196, 15, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-list-container {
        margin: 20px;
        border-radius: 15px;
    }
    
    .hero-section,
    .services-section,
    .cta-section {
        padding: 40px 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .service-title h3 {
        font-size: 1.5rem;
    }
    
    .service-details {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service-title h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-placeholder {
        font-size: 2rem;
    }
    
    .accordion-header {
        padding: 15px;
    }
    
    .service-details {
        padding: 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Animation for smooth accordion transitions */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item.active .service-details {
    animation: slideDown 0.3s ease;
}

