/* Main */

a, article, body, div, footer, h1, h2, h3, h4, h5, h6, hr, iframe, img, li, main, p, section, table, th, tr, td, ul, ol  { /* reset */
    margin: 0px;
    padding: 0px;
}

html {
    box-sizing:border-box;
}

*,
*:before,
*:after {
    box-sizing:inherit;
}

article {
    padding:20px;
    font-size: 1.4rem;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: black;
}

body {
    font-family: 'Work Sans', sans-serif;
    background:#013d5775;
    background-image: url('../images/bg-new.png');
    background-position: center;
    background-repeat: none;
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 a {
    font-size: 2rem;
    font-weight:normal;
    display: inline-block;
}

h2 {
    transition: all 0.3s ease;
    display: block;
    font-size: 26px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:900px;
    max-width: 100%;
    background:#eee;
    box-shadow:0px 5px 10px #01263681;
}

#info {
    background:#0496d457;
}

#info img {
    width:100%;
    max-width:100%;
    margin:0px auto;
    text-align: center;

}

#why {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background:#0c9cdafd;
    border-top: 4px solid #0272a1be;
    border-bottom: 4px solid #0272a1be;
}

#why .container {
    padding:25px;
    margin:10px auto;
    box-shadow: 0px 5px 10px #015477be;
    background:white;
    color:#044c6bfa;
    border-radius: 20px;
    width:600px;
    max-width: 100%;
}

#why .container h3 {
    font-size: 2rem;
}

#services {
    background:#4b92ae;
    border-bottom: 4px solid #0587bebe;
}

#services h2 {
    font-size: 2.5rem;
    padding:10px;
    color: white;
    text-align: center;
    text-shadow: 0px 2px 3px #02517457;
}

#services .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

#services .service {
    max-width:100%;
    box-shadow: 0px 5px 5px #01202dc5;
    padding:2rem;
    margin:10px;
    vertical-align: top;
    border-radius: 20px;
    background: rgb(247, 245, 245);
    color:#02638dfa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex:1;
    min-width: 300px;
}

#services .service:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px #01202dc5;
}

#contact {
    background:#0496d457;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:100%;
}

#contact h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0px 2px 3px #02517457;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #044c6bfa;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
}

.submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

#contact .flex-container {
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: center;
}

input {
    appearance: none;
    -webkit-border-radius:0;
    border-radius:0;
}

hr {
    border:1px solid black;
}

/* FOOTER */

footer {
    color: white;
    width: 100%;
    padding:10px;
    z-index:1;
    background:black;
    width:900px;
    max-width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px 20px;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.footer-btn:hover {
    background: #2980b9;
}

footer div {
    list-style: none;
    text-align: center;
}

footer a {
    display: inline-block;
    padding:5px;
    color:white;
}

footer a:hover {
    opacity: 0.8;

}

footer p {
    margin: 0px auto;
    padding:0px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin: 0 10px;
}

/* Policy Pages */
.policy-content {
    background: white;
    margin: 20px auto;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
}

.policy-content h1 {
    color: #044c6bfa;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.policy-content h2 {
    color: #044c6bfa;
    margin: 30px 0 15px 0;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: #044c6bfa;
    margin: 20px 0 10px 0;
    font-size: 1.4rem;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.back-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border-radius: 5px;
    margin-top: 30px;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #2980b9;
}

/* contact info styling */

.contact-info {
    margin-top: 10px;;
    background: white;
	padding:20px;
	box-shadow:0px 5px 10px #0289c4bb;
	color:#044c6bfa;
    border-radius:5px;
    display: inline-block;

}
.contact-info h5 {
    font-size:24px;
}

#header {
    position: relative;
	padding:0px;
	border: none;
	text-align: center;
	color:white;
	background-image: url('../images/header.png');
	background-size: cover;
	background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#overlay {
	padding:30px 0px;
	height: 100vh;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(222, 230, 236, 0.5);
	z-index: 2;
	width:900px;
	max-width: 100%;
	display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: center;
}

#header .text-container {
	z-index:9;
	width:900px;
	max-width: 100%;
}

#header .text-container img {
	max-width: 100%;
}

.grecaptcha-badge { opacity:0;}
