/* Reset default styles */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/***************/
/***Start CSS***/
/***************/

/* Header and navigation */
header {
    background-color: #2c3e50;
    padding: 1rem;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
	font-variant: small-caps;
}

/* Logo and title styling */
.logo-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.company-logo {
    width: 200px;
    height: auto;
    margin-right: 1rem;
}


.title-container {
    flex: 1;
}

.cert-badge { 
    max-width: 100px; 
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
}

h1, h2 , h3{
    margin-bottom: 1rem;
	font-variant: small-caps;
	font-weight: bold;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
}

/* Hero section */
#hero {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}



/* Services */
#services ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	background-color: #ecf0f1;
	border-radius: 1em;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}

#services ul li {
    flex-basis: calc(50% - 1rem);
    background-color: #ecf0f1;
    padding: 0.6rem;
    margin-bottom: 0.6rem;
    border-radius: 1em;
	text-align: center;
	font-weight: bold;
}

/* Job Examples */
.example-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.example {
    flex-basis: calc(33.33% - 1rem);
    margin-bottom: 2rem;
}

.example img {
    width: 100%;
    height: auto;
    border-radius: 1em;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}

.example h3 {
    margin: 1rem 0;
}

/* Contact section */
#contact {
    background-color: #f0f0f0; /* Light gray background */
    padding: 2rem;
    border-radius: 1em;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}

/* Contact form */

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 1rem;
}

input, textarea {
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #2c3e50;
    color: #ecf0f1;
    border: none;
    border-radius: 3px;
    cursor: pointer;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}

button:hover {
    background-color: #34495e;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .logo-title-container {
        flex-direction: column;
        text-align: center;
    }

    .company-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
	
	nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 0.5rem;
    }

    #services ul li {
        flex-basis: 100%;
    }

    .example {
        flex-basis: 100%;
    }
}