body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.7;
    font-size: 17px;
}

header {
    background-color: #004b80;
    padding: 15px 10px;
    color: #fff;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}

nav {
    background: #003f6b;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-size: 17px;
    font-weight: 500;
}

nav a:hover {
    color: #f4f6f9;
    border-bottom: 2px solid #25d366;
}

.hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 24px;
}

.section {
    padding: 40px 20px;
    text-align: center;
}

.section h2 {
    color: #004b80;
    margin-bottom: 20px;
    font-size: 26px;
}

.section p {
    max-width: 800px;
    margin: auto;
    margin-bottom: 20px;
}

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-content img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-box img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.pricing-table {
    width: 90%;
    margin: 25px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
    font-size: 17px;
}

.pricing-table th {
    background-color: #004b80;
    color: white;
    font-size: 18px;
}

.cta {
    background: #25d366;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    margin-top: 25px;
    font-size: 19px;
    font-weight: bold;
}

.cta:hover {
    background: #1ebe5b;
}

footer {
    background: #222;
    color: white;
    padding: 18px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
}

form input, form textarea {
    width: 90%;
    max-width: 500px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

form button {
    background: #004b80;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s ease;
}

form button:hover {
    background: #003f6b;
}

@media (max-width: 600px) {
    .hero-text {
        font-size: 18px;
        padding: 10px 14px;
    }

    .section h2 {
        font-size: 22px;
    }

    nav a {
        display: inline-block;
        margin: 8px 10px;
    }
}
