/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Header/Hero Section */
.hero {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* To contain the absolute positioned image */
}

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

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

.hero .btn {
    display: inline-block;
    background: #e44d26; /* Orange */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background: #f76c4e;
}

.hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Sections General */
.section {
    padding: 60px 0;
    text-align: center;
}

.section:nth-of-type(even) {
    background-color: #e2e2e2;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #0f2027;
}

.section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-item img {
    max-width: 100px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c5364;
}

.feature-item p {
    font-size: 1em;
    color: #555;
}

/* Credibility Section */
.credibility ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}

.credibility ul li {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #e44d26;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact form {
    max-width: 600px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-group input[type="tel"]::placeholder {
    color: #aaa;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 0.9em;
}

.contact .btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #2c5364; /* Darker blue */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact .btn:hover {
    background: #3a6b83;
}

/* Footer */
footer {
    background: #0f2027;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .section h2 {
        font-size: 2em;
    }

    .feature-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .section {
        padding: 40px 0;
    }

    .section h2 {
        font-size: 1.8em;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        width: calc(100% - 10px); /* Adjust for smaller padding */
    }
}
