
body {
    background: linear-gradient(135deg, #3498db, #8e44ad);
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    perspective: 1000px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    color: #2c3e50;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform: translateZ(0);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03) translateZ(0);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

.service-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.short-description {
    color: #7f8c8d;
    min-height: 60px;
}

.full-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.service-card.expanded .full-description {
    max-height: 500px;
    margin-top: 1rem;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.read-more, .book-now {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.read-more {
    background: #ecf0f1;
    color: #2c3e50;
}

.book-now {
    background: #3498db;
    color: white;
}

.subscribe-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}

nav {
    background: #2c3e50;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
