/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    color: #2c3e50;
}

p {
    color: #666;
}

/* Header */
header {
    background: #2c3e50;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    float: left;
    font-size: 1.5rem;
    font-weight: 600;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

header .btn {
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

header .btn:hover {
    background: #2980b9;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: #fff; /* Set text color to white */
    padding: 150px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff; /* Ensure the heading is white */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff; /* Ensure the paragraph is white */
}

.hero .btn {
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero .btn:hover {
    background: #2980b9;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.services h2 {
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    text-align: center;
    background: #f9f9f9;
}

.pricing h2 {
    margin-bottom: 40px;
}

.pricing-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pricing-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-10px);
}

.pricing-item.popular {
    background: #3498db;
    color: #fff;
}

.pricing-item.popular .btn {
    background: #fff;
    color: #3498db;
}

.pricing-item .price {
    font-size: 2rem;
    margin-bottom: 15px;
}

.pricing-item .price span {
    font-size: 1rem;
    color: #777;
}

.pricing-item ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-item ul li {
    margin-bottom: 10px;
}

.pricing-item .btn {
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.pricing-item .btn:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    width: 30%;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}