/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #222;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

/* Header Styles */
.main-header {
    background-color: #222;
    color: white;
    padding: 10px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Updated logo section */
.logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: white; /* White text */
    margin: 0;
    padding: 0;
    background-color: transparent; /* Ensure background is transparent */
    border: none; /* No border */
    cursor: default; /* Not clickable */
}

.nav-links ul {
    display: flex;
    gap: 15px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-links a:hover {
    background-color: #007bff;
}

/* Hero Section */
.hero {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #222;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
}

/* Submission Section */
.submission {
    background-color: #e9ecef;
    padding: 60px 20px;
    text-align: center;
}

.submission h2 {
    margin-bottom: 20px;
}

.submission p {
    margin-bottom: 30px;
}

.submission .cta-button {
    background-color: #007bff;
    padding: 12px 30px;
}

.submission .cta-button:hover {
    background-color: #0056b3;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 40px;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.pricing-plan {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

.pricing-plan h3 {
    margin-bottom: 10px;
}

.pricing-plan ul {
    list-style-type: none;
    padding: 0;
}

.pricing-plan ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Contact Section */
.contact {
    background-color: #e9ecef;
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.contact p {
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

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

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

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form .form-group textarea {
    resize: vertical;
}

.contact-form button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}


/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 10px;
    color: white;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-media img {
    width: 24px;
    margin: 0 10px;
}

/* Submission Form Styles */
.submission-form {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.submission-form h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.submission-form p {
    margin-bottom: 30px;
}

.submission-form .form-group {
    margin-bottom: 15px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

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

.submission-form .form-group input,
.submission-form .form-group select,
.submission-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.submission-form button {
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submission-form button:hover {
    background-color: #0056b3;
}

/* Custom Modal Styles */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top of other elements */
}

.modal-content {
    background-color: #fff; /* White background */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 500px;
    width: 90%; /* Responsive width */
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.modal-content .cta-button {
    background-color: #222; /* Matches existing button color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-content .cta-button:hover {
    background-color: #0056b3; /* Matches existing hover color */
}
