/* Custom Styles for CertiPath Compliance Website */

/* General body styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #003366;
    color: white;
    padding: 20px 0;
}

header .logo h1 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

/* Home Section */
#home {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

#home h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#home p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #005bb5;
}

/* Services Section */
#services {
    padding: 50px 0;
    text-align: center;
    background-color: #e9ecef;
}

#services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.service {
    margin: 20px 0;
}

.service h3 {
    font-size: 28px;
    color: #003366;
}

.service p {
    font-size: 18px;
}

/* About Us Section */
#about {
    padding: 50px 0;
    text-align: center;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#about p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Us Section */
#contact {
    padding: 50px 0;
    background-color: #f4f4f4;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

form label {
    font-size: 18px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}

form button:hover {
    background-color: #005bb5;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    .cta-button {
        display: inline-block;
        margin-top: 20px;
    }
}
