.courses-container {
    margin: 2rem 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.course-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #041543;
    font-size: 1.5rem;
}

.course-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.course-price {
    font-weight: bold;
    color: #041543;
}

.course-details-container {
    margin: 2rem 0;
}

.course-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .course-header {
        flex-direction: row;
        gap: 2rem;
    }
}

.course-header-image {
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .course-header-image {
        flex: 0 0 40%;
        margin-bottom: 0;
    }
    
    .course-header-content {
        flex: 1;
    }
}

.course-header-image img {
    width: 100%;
    height: auto;
    display: block;
}

.course-info-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.course-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.course-info-item {
    margin-bottom: 1rem;
}

.course-info-label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.25rem;
    color: #041543;
}

.course-info-value {
    color: #626262;
}

.course-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .course-lists {
        grid-template-columns: 1fr 1fr;
    }
}

.course-list-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.course-list-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #041543;
}

.course-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list li::before {
    content: "✓";
    color: #7197ee;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.course-cta {
    text-align: center;
    margin: 3rem 0;
}

.course-cta .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
} 

/* Services styling */
.services-container {
    margin: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #041543;
    font-size: 1.5rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.service-price {
    font-weight: bold;
    color: #041543;
}

.service-details-container {
    margin: 2rem 0;
}

.service-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.service-header-content {
    flex: 1;
}

.service-info-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.service-info-item {
    margin-bottom: 1rem;
}

.service-info-label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.25rem;
    color: #041543;
}

.service-info-value {
    color: #626262;
}

.service-cta {
    text-align: center;
    margin: 3rem 0;
}

.section-title {
    color: #041543;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #7197ee;
    padding-bottom: 0.5rem;
    display: inline-block;
} 