/* GLOBAL STYLES */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff7f50;
    color: white;
    padding: 20px;
    flex-wrap: wrap;
}

.main-header .logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    color: white;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #ff7f50, #ff9966);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-hero {
    display: inline-block;
    background-color: white;
    color: #ff7f50;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-hero:hover {
    background: #f2f2f2;
}

/* SERVICES SECTION */
.services-section {
    text-align: center;
    margin: 40px 20px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 40px;
    color: #ff7f50;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
}

.card .price {
    font-weight: bold;
    font-size: 18px;
    color: #444;
}

.card .duration {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.card .btn {
    display: inline-block;
    background-color: #ff7f50;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.card .btn:hover {
    background-color: #e0663c;
}

/* FORM CONTAINER */
.form-container {
    max-width: 400px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

input, select {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

input[type="submit"], .btn {
    background-color: #ff7f50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="submit"]:hover, .btn:hover {
    background-color: #e0663c;
}

/* TABLE STYLES */
table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

th, td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #ff7f50;
    color: white;
}

/* FOOTER */
.main-footer {
    background-color: #222;
    color: #ddd;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        margin-top: 10px;
    }

    .main-nav a {
        display: inline-block;
        margin: 5px 10px;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .form-container {
        margin: 20px;
    }
}
