/* General Styles */
body {
    font-family: 'Roboto', sans-serif; /* Consistent font */
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header .brand, header .logo {
    color: #ff6e66; /* Highlight brand/logo color */
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.navbar, .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 15px; /* Consistent spacing between links */
}

.navbar a, .nav-links a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar a:hover, .nav-links a:hover {
    text-decoration: underline;
    background-color: #f0f0f0;
    color: #ff6e66;
}

/* Main Section */
.main-section {
    text-align: center;
    padding: 50px 20px;
    color: black;
}

.main-section h1 {
    font-size: 36px;
    font-weight: bold;
    color: #ff6e66;
    margin-bottom: 20px;
}

.main-section p {
    font-size: 16px;
    margin-bottom: 30px;
}

.main-section .buttons a {
    text-decoration: none;
    color: white;
    background-color: #ff6e66;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0 10px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.main-section .buttons a:hover {
    background-color: #e55b5b;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #004c99 50%, #f9fafb 50%);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6e66;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .hero-button {
    font-size: 1rem;
    padding: 10px 20px;
    color: white;
    background-color: #ff6e66;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero .hero-button:hover {
    background-color: #e55b5b;
}

/* Services Section */
.services {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #ffffff;
    color: #333;
}

.service-card {
    background: #f1f3f5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
}

.service-card img {
    width: 100%;
    border-radius: 10px;
}

.service-card h3 {
    margin: 20px 0 10px;
    color: #004c99;
}

.service-card p {
    color: #555;
}

.service-card button {
    background-color: #ff6e66;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card button:hover {
    background-color: #e55b5b;
}

/* Pricing Section */
.pricing-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.pricing-title {
    font-size: 2rem;
    color: #004c99;
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing-title span {
    color: #ff6e66;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #004c99;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 1.8rem;
    color: #ff6e66;
    font-weight: bold;
    margin: 10px 0 20px;
}

.pricing-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.book-now {
    background-color: #ff6e66;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
}

.book-now:hover {
    background-color: #e55b5b;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }
}
