
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #2563eb;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #f8fafc;
}

main {
    padding-top: 80px;
    min-height: calc(100vh - 150px);
}

.section {
    max-width: 65%;
    margin: 0 auto;
    padding: 2% 0 2% 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.btn {
    display: inline-block;
    background-color:#2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.grid-3 {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.card {
    display: flex;
    width: 23%;
    flex-direction: column;
    background-color: #1e293b;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.price {
    font-size: 1.25rem;
    color: #10b981;
    font-weight: 600;
    margin: 1rem 0;
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: #1e293b;
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

footer {
    background-color: #0b0f19;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Schedule List */
.schedule-list {
    margin-top: 2rem;
}
.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e293b;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}
.schedule-time {
    color: #10b981;
    font-weight: bold;
}


/*SECTIONFOUR AND FOOTER*/

.sectionFour {
    background-color: #17223c;
    border-top: 1px solid #344d76;
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    align-items: center;
}

.sectionFour h2 {
    margin-top: 3%;
    color: white;
}

.sectionFour p {
    color:white;
}

.btnPageFour {
    background-color: #10b981;
    width: 15%;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    margin-bottom: 5%;
    font-size: 110%;
    padding: 1% 2%;
}

.btnPageFour:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

footer {
    background-color: #0b0f19;
    color: #64748b;
    text-align: center;
    font-size: 1rem;
    border-top: 1px solid #344d76;
    }
