/* General Reset and Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7fc;
}

/* Header Section */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

header .logo img {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

header .logo ul {
    list-style: none;
    display: inline-block;
}

header .logo li {
    font-size: 22px;
}

header .logo p {
    font-size: 14px;
    color: #bdc3c7;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.cta-btn:hover {
    background-color: #2980b9;
}

/* Services Section */
#services-preview {
    padding: 60px 20px;
    text-align: center;
}

#services-preview h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

#services-preview p {
    font-size: 18px;
    margin-bottom: 30px;
}

.service-preview {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    width: 30%;
    margin: 15px 0;
    text-align: center;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 24px;
    margin-top: 10px;
}

.service-item p {
    font-size: 16px;
    color: #7f8c8d;
}

/* Bank Details Section */
#bank-details {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

#bank-details h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

#bank-details ul {
    list-style: none;
    padding: 0;
}

#bank-details ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

#bank-details h3 {
    font-size: 24px;
    margin-top: 30px;
}

#bank-details img {
    width: 150px;
    margin-top: 20px;
}

/* Plans Section */
#plans {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

#plans h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    text-align: left;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px 15px;
}

th {
    background-color: #3498db;
    color: white;
}

td {
    background-color: #f9f9f9;
}

td:hover {
    background-color: #f1f1f1;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

#contact h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

#contact p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #2980b9;
}

/* Footer Section */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-preview {
        justify-content: space-between;
    }

    .service-item {
        width: 45%;
    }

    .hero-text h2 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .service-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 20px;
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    header .navbar .logo ul {
        text-align: center;
    }

    header .navbar nav ul {
        text-align: center;
    }

    .cta-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    #contact .contact-form-container {
        padding: 15px;
    }

    #contact .contact-form input,
    #contact .contact-form textarea {
        font-size: 14px;
    }

    #contact .contact-form button {
        font-size: 16px;
    }
}
