/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #1a1a1a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #333333;
    color: #f0f0f0;
    padding: 20px 0;
}

.header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('header-image.jpg') no-repeat center center/cover;
    color: #f0f0f0;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero .btn {
    background: #0066cc;
    color: #f0f0f0;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 0 10px;
}

.hero .btn-primary {
    background: #004d99;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 50px 0;
    background-color: #292929;
}

.stats .stat {
    flex: 1;
}

.stats h2 {
    font-size: 2em;
    color: #66ccff;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    padding: 50px 0;
    background-color: #1f1f1f;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #66ccff;
}

.services .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.services .service {
    background: #292929;
    padding: 20px;
    text-align: center;
    border: 1px solid #444;
    border-radius: 5px;
    width: calc(25% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.services .service img {
    max-width: 100px;
    margin-bottom: 15px;
}

.services .service h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.services .service .btn {
    background: #0066cc;
    color: #f0f0f0;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Pricing Section */
.pricing {
    background-color: #1f1f1f;
    padding: 50px 0;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 20px;
    color: #66ccff;
}

.pricing table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing table th, .pricing table td {
    border: 1px solid #444;
    padding: 15px;
    color: #f0f0f0;
}

.pricing table th {
    background: #333333;
}

.pricing table td {
    background: #292929;
}

.pricing table .btn {
    background: #004d99;
    color: #f0f0f0;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

/* Features Section */
.features {
    padding: 50px 0;
    background: #292929;
}

.features h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #66ccff;
}

.features .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.features .feature {
    flex: 1;
    background: #1f1f1f;
    padding: 20px;
    border: 1px solid #444;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.features .feature h3 {
    margin-bottom: 10px;
    color: #66ccff;
}

/* Footer */
.footer {
    background: #333333;
    color: #f0f0f0;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats, .services .service-list, .features .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .services .service, .features .feature {
        width: 100%;
    }
}
