@charset "utf-8";
/* CSS Document */

html {
	scroll-behavior: smooth;
}

body {

	padding: 0;
	margin: 0;
    font-family: "Poppins", sans-serif;
    background:rgba(238, 63, 36);
    color:rgba(255,239,203);
	
}

h1, h2 {
	font-family: "Poppins", sans-serif;
}

.container1 {
	position: sticky;
	z-index: 2;
	top: 0;
	overflow: hidden;
	width: 100%;
	background-color:rgba(238, 63, 36);
    margin: auto;
    border-radius: 2px;
    padding:15px;
	box-sizing: border-box;
	justify-content: flex-end;
	display: flex;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	
}

.navi {
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 50px;
	margin-right: 5px;
}

.navi a:link {
	color:antiquewhite;
	font-weight: 400;
	font-size: 1.0em;
	font-family: "Nunito Sans", sans-serif;
    text-decoration: underline;	
}

.navi a:hover {
	color: rgba(2,56,32);
}

/* Background Grid Pattern */
.faq-page {
    background-color: #FDF1D3;
    padding: 60px 0;
}

/* Contact Form Card */
.form-card {
    background-color: #F7A325;
    padding: 40px;
    border-radius: 4px;
	margin-left: 60px;
	margin-right: 60px;
    margin-bottom: 60px;
	margin-top: 60px;
    color: white;
}

.form-content {
    display: flex;
    gap: 40px;
}

.form-text { 
	flex: 1; 
}


.form-text h2 { 
	font-size: 3rem; 
	line-height: 1;
	margin-bottom: 15px; 
}

.contact-form { 
	flex: 2; 
	display: flex; 
	flex-direction: 
	column; gap: 10px;
}

.form-row { 
	display: flex; 
	gap: 10px; 
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #D98C1D;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-footer { display: flex; align-items: center; gap: 20px; margin-top: 10px; }

button[type="submit"] {
    background-color: #D9D9D9;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    font-weight: bold;
}

/* FAQ Accordion Styling */
.faq-title { 
	text-align: center; 
	color: #FFEFCB; 
	font-size: 2.5rem; 
}
.faq-subtitle { 
	text-align: center; 
	max-width: 600px; 
	margin: 10px auto 40px; 
	color: #FFEFCB; 
}

.faq-item {
    background-color: #F8E5B9;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1); /* Subtle shadow from your design */
}

summary {
    padding: 25px;
    list-style: none; /* Removes default arrow */
    cursor: pointer;
	font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1B3022;
}

/* Hide the default marker in Chrome/Safari */
summary::-webkit-details-marker { display: none; }

.plus-icon {
    font-size: 0.9rem;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1B3022;
}

.answer {
    padding: 0 25px 25px;
    color: #444;
    line-height: 1.6;
}

.footer {
    padding: 60px 80px 30px;
    box-sizing: border-box;

}

footer-main {
	display: grid;
	grid-template-columns: 2 1 1 1;
	column-gap: 40px;
}

.logo{
	font-size: 100px;
	font-weight: bold;
	margin-bottom: 20px;
	width: 10%;
}

footer-brand p{
	max-width: 300px;
    margin-bottom: 25px;	
	font-size: 100px;
}

.btn{
	display: inline-block;
	padding: 10px 24px;
	border: 1px #F5C36A;
	color: #f5c36a;
	text-decoration: none;
	font-size: 14px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    min-height: 100px;
    padding: 1%;
    gap: 25px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col a {
	text-decoration: none;
	color: antiquewhite;
	font-size: 14px;
}

.footer-col a:hover {
	color: rgba(2,56,32);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	font-size: 12px;
	color: aliceblue;
	border-top: 1px solid rgba(2,56,32);
	padding-top: 20px;
}
