@charset "utf-8";

*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

body {
	display: flex;
	flex-direction: column;
}

.contact-main{
	background-color: #2e3192; 
}.blog-main{
	background-color: #2e3192; 
}.application-main{
	background-color: #2e3192;
	padding: 5rem;
}

.application-main .apply {
	margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    width: 100%;
}.application-main .apply a {
	text-decoration: none;
	color: white;
	font-size: 1rem;
	font-weight: lighter;
	border: 1px solid white;
	padding: 0.5rem;
}.application-main .apply a:hover {
	color: black;
	text-decoration: underline;
	border: 2px solid white;
	background: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
 .application-main .apply {
	flex-direction: column;
	justify-content:center;
	gap: 5rem;
}.application-main .apply a {
	color: white;
	font-size: 1rem;
	font-weight: lighter;
	border: 1px solid white;
	padding: 0.5rem;
}.application-main .apply a:hover {
	color: black;
	text-decoration: underline;
	border: 1px solid white;
	background: white;
}
}

/*----------------------------------------NAVIGATION BAR----------------------------------------*/
/* General Navigation Styles */
nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    background-color: #2e3192;
}

.nav-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: 100%;
}

.nav-logo {
    margin: 0;
    padding: 2.5rem 1rem;
    background-image: url("../images/Business-Circle-White-2.png");
    background-position: center;
    background-size: cover;
    width: 15rem;
    margin-right: 5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    border: 1px solid #FFFFFF;
    border-radius: 2.5rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
}

.nav-menu li a:hover {
    text-decoration: underline;
}

.nav-menu li a.active {
    background-color: #FFFFFF;
    color: black;
    border-radius: 2rem;
}

/* Dropdown Styles */
.nav-menu li:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #2e3192;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1;
    list-style: none;
    text-align: start;
}

.dropdown-menu li a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;  /* Align items to the left */
    }

    .nav-logo {
        margin-bottom: 1rem; /* Space below logo */
        margin-right: 0; /* Remove right margin */
    }

    .nav-menu {
        flex-direction: column; /* Stack menu items */
        width: 100%; /* Full width for mobile */
    	border: 1px solid #FFFFFF;
    	border-radius: 1.5rem;

    }

    .nav-menu li {
        width: 100%; /* Full width for each menu item */
    }
}

/*----------------------------------------PRIMARY BUTTON----------------------------------------*/
.btn-primary {
 	background-color: #2e3192;
 	color: #fff;
  	padding: 0.5rem 1rem;
	border: 1px solid #FFFFFF;
	cursor: pointer;
	text-decoration: none;
	font-weight: lighter;
  	transition: all 0.3s ease-in-out;
	
	/*border: 3px solid #73AD21;*/
}

.btn-primary:hover {
 	background-color: #FFFFFF;
 	color: #000000;
	font-weight: lighter;
}

/*----------------------------------------HEADER----------------------------------------*/
/* General Styles */
.blog-header {
    max-height: 70rem;
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0;
    background-color: #2e3192;
}

.header {
    height: 650px;
    padding: 0 5rem;
    overflow: hidden;
    background-image: url("../images/CBD.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 25px;
    color: #FFFFFF;
}

.header img {
    height: 35rem;
    width: auto;
    object-fit: cover;
}

.header .header-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}

.header .header-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
    gap: 5rem;
}

.blog-header .header-wrapper {
    flex-direction: column;
    padding: 2.5rem 5rem;
}

.header .header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 50%;
    gap: 5rem;
}

.blog-header .header-content {
    align-items: flex-start;
}

/* Heading Styles */
.header h1 {
    width: 100%;
    font-size: 3rem;
}

.blog-header h1 {
    font-size: 5rem;
    color: white;
    font-weight: lighter;
}

.header p {
    width: 100%;
    font-size: 1.5rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .header {
        padding: 0 3rem;
    }
    
    .header .header-content {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto; /* Allow flexible height */
        padding: 2rem; /* Reduce padding */
    }
    
    .header h1 {
        font-size: 2.5rem; /* Smaller heading */
    }
    
    .header p {
        font-size: 1.2rem; /* Smaller paragraph */
    }
    
    .header .header-content {
        width: 90%; /* Full width on smaller screens */
        align-items: center; /* Center align */
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2rem; /* Further reduce heading size */
    }
    
    .header p {
        font-size: 1rem; /* Further reduce paragraph size */
    }
    
    .header .header-image {
        flex-direction: column; /* Stack images vertically */
        gap: 20px; /* Adjust gap */
    }
}

/*----------------------------------------BENEFITS SECTION----------------------------------------*/

.benefits-section {
    display: flex;
    flex-direction: column;
    padding: 5rem;
}

.benefits-section h1 {
    text-align: start; /* Align text to the left */
    font-size: 3rem;
    font-weight: lighter;
    color: #3B3C40;
    margin-bottom: 2rem; /* Add spacing below the heading */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem; /* Reduce padding on smaller screens */
    }

    .benefits-section h1 {
        font-size: 2.5rem; /* Decrease font size for smaller screens */
        text-align: center; /* Center align on mobile for better aesthetics */
    }
}

/*----------------------------------------INTRODUCTION----------------------------------------*/

/* General Intro Styles */
.intro-container, .intro2-container {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 5rem;
    gap: 5rem; /* Use gap for spacing */
}

.intro, .intro2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6rem; /* Use gap for spacing */
}

.intro-content, .intro2-content {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro img, .intro2 img {
    width: 200px; /* Keep consistent width */
    height: 200px; /* Keep consistent height */
    object-fit: cover;
}

/* Heading Styles */
.intro-content h1, .intro2-content h1 {
    text-align: start;
    font-size: 3rem;
    font-weight: lighter;
    color: #3B3C40;
}

.intro-content p, .intro2-content p {
    font-size: 1.2rem;
    color: black;
    font-weight: lighter;
}

/* Specific Styles for Intro2 */
.intro2-content {
    width: 50%; /* Adjust width for intro2 */
}

.intro2 img {
    width: 30rem; /* Larger size for intro2 images */
    height: 30rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .intro, .intro2 {
        gap: 2rem; /* Reduce gap for smaller screens */
    }

    .intro-content, .intro2-content {
        width: 100%; /* Full width on mobile */
    }

    .intro-content h1, .intro2-content h1 {
        font-size: 2.5rem; /* Smaller heading on mobile */
    }

    .intro-content p, .intro2-content p {
        font-size: 1rem; /* Smaller paragraph on mobile */
    }
}

/*----------------------------------------INFORMATION BLOCK----------------------------------------*/
/* General Block Styles */
.block-container {
    display: flex;
    flex-direction: column;
    padding: 50px;
    gap: 50px; /* Use gap for spacing */
}

.block {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 100px; /* Use gap for spacing */
}

.block .block-content {
    width: 700px; /* Fixed width for larger screens */
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.block img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 10px;
}

.block .block-content p {
    font-size: 1.5rem;
    color: #FFFFFF;
	font-weight: lighter;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .block {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        gap: 30px; /* Adjust gap for smaller screens */
    }

    .block .block-content {
        width: 100%; /* Full width on mobile */
    }

    .block img {
        width: 8rem; /* Adjust image size for mobile */
        height: 8rem;
    }

    .block .block-content p {
        font-size: 1rem; /* Smaller font size on mobile */
    }
}
/*----------------------------------------FEATURE DESIGN----------------------------------------*/
/* General Feature Styles */
.feature-container {
    display: flex;
    flex-direction: row;
    align-items: center; /* Align items vertically */
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Use 100% for full width */
}

.feature-container .feature {
    width: 200px; /* Fixed width for features */
    display: flex;
    flex-direction: column;
    padding: 0 20px 25px; /* Consistent padding */
    margin: 20px;
    overflow: hidden;
}

.feature-container .feature img {
    width: 100%;
    height: auto;
    padding-bottom: 25px;
}

.feature-container .feature .feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 0 30px; /* Consolidated padding */
}

.feature-container .feature .feature-content img {
    width: 100%; /* Responsive image width */
    height: auto; /* Maintain aspect ratio */
    max-width: 400px; /* Maximum width for larger screens */
}

.feature-container .feature .feature-content p {
    font-size: 1.5rem; /* Responsive font size */
    font-weight: bold;
    text-align: center;
    color: #3B3C40;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .feature-container {
        justify-content: center; /* Center features on smaller screens */
    }

    .feature-container .feature {
        width: 100%; /* Full width for features on mobile */
        max-width: 300px; /* Max width for better spacing */
    }

    .feature-container .feature .feature-content p {
        font-size: 1.2rem; /* Smaller font size on mobile */
    }
}
/*----------------------------------------STORY DESIGN----------------------------------------*/
/* General Section Styles */
.for-consumers, .for-business, .how-business-circle-facilitates-value-trade, .rewards-for-consumers, .how-it-works-home, .how-it-works .what-value-trade {
    display: flex;
    flex-direction: column;
    padding: 5rem;
    background: #2e3192; /* Common background color */
    gap: 2.5rem; /* Uniform gap */
}

.what-value-trade {
    display: flex;
    flex-direction: column;
    padding: 5rem;
    background: #2e3192; /* Common background color */
    gap: 2.5rem; /* Uniform gap */
}

.rewards-for-consumers {
    background: #3B3C40; /* Different background */
}

/* Story Section Styles */
.story {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.story h1, .story1-section h1 {
    text-align: start;
    font-size: 3rem;
    font-weight: bolder;
    color: white;
}

.story h2 {
    text-align: start;
    font-size: 2rem;
    font-weight: bolder;
    color: white;
}

.story p {
    text-align: start;
    color: white;
    font-size: 1.2rem;
    font-weight: lighter;
}

.story ul {
	text-align: start;
    color: white;
    font-size: 1.2rem;
    font-weight: lighter;
}

.story img {
    height: 20rem;
    width: 20rem;
    object-fit: cover;
}

/* Story Container */
.story-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../images/micheile-henderson-SoT4-mZhyhE-unsplash.jpg");
    background-position: center;
    background-size: cover;
    border: 2px solid #FFFFFF;
}

/* Story 2 Styles */
.story2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.story2-content, .story1-content, .story3-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%; /* Default width */
}

.story2-content ol {
	text-align: start;
    color: white;
    font-size: 1.2rem;
    font-weight: lighter;
}

.story3-content {
    display: flex;
    flex-direction: column;
	justify-content: center;
	text-align: center;
    gap: 1rem;
    width: 100%; /* Default width */
}

.story2 img, .story3 img {
    height: 30rem;
    width: 30rem;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.story2-content h2, .story3-content h2, .story1 h2 {
    color: #FFFFFF;
    font-weight: bolder;
    font-size: 3.75rem;
    padding-bottom: 1rem;
}

.story2-content p, .story3-content p, .story1 p {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: lighter;
    padding-bottom: 3rem;
}

/* Story 1 Styles */
.story1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 5rem;
    margin: auto;
    gap: 1rem;
}

.story1 img {
    height: 25rem;
    width: 25rem;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.story1 img:hover {
    transform: scale(1.04); /* Slightly enlarge on hover */
}

.story1 h4 {
    color: #FFFFFF;
    font-size: 1rem;
}

/* Story 3 Styles */
.story3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.step h2{
	color: white;
	font-weight: bold;
}

.step p {
	color: white;
}

.reward h2{
	color: white;
	font-weight: bold;
}

.step h3{
	color: white;
}

.reward p {
	color: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .story2-content, .story1-content, .story3-content {
        width: 100%; /* Full width on mobile */
    }

    .story1 h2, .story2-content h2, .story3-content h2 {
        font-size: 2.5rem; /* Smaller heading for mobile */
    }

    .story1 img, .story2 img, .story3 img {
        height: 20rem; /* Smaller images on mobile */
        width: 20rem;
    }

    .story1 p, .story2-content p, .story3-content p {
        font-size: 1rem; /* Smaller paragraph text on mobile */
    }
}

/*----------------------------------------TAG DESIGN----------------------------------------*/
/* Tag Container Styles */
.tag-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px; /* Space between tags */
}

/* Tag Styles */
.tag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Space inside each tag */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    background: white;
    transition: box-shadow 0.3s ease; /* Smooth shadow transition on hover */
}

.tag:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

/* Tag Info Styles */
.tag-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Space inside tag info */
}

.tag-info img {
    border-radius: 50%;
    height: 150px;
    width: 150px;
    object-fit: cover;
}

/* Tag Content Styles */
.tag-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Space inside tag content */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .tag-container {
        flex-direction: column; /* Stack tags vertically on smaller screens */
        align-items: flex-start; /* Align items to the start */
    }

    .tag {
        width: 100%; /* Full width for each tag on mobile */
        max-width: 300px; /* Set a maximum width */
    }
}

/*----------------------------------------BLOG ENTRY DESIGN----------------------------------------*/
/* Blog Section Styles */
.blog-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    gap: 8rem; /* Space between elements */
}

.blog-section h1 {
    font-size: 3rem;
    color: #3b3c40; /* Main heading color */
}

/* Blog Container */
.blog-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Blog Styles */
.blog {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of blog items */
    justify-content: space-around;
    padding: 0; /* Reset padding */
    margin: auto;
    gap: 1rem; /* Space between blog items */
    background-color: #2e3192; /* Background color for the blog section */
}

/* Blog Content */
.blog-content {
    display: flex;
    flex-direction: column;
    width: 60%; /* Fixed width for blog content */
    height: auto;
    gap: 1rem; /* Space between elements */
    position: relative; /* For absolute positioning of buttons */
}

.blog img {
    height: 20rem; /* Set image height */
    width: 20rem; /* Set image width */
    object-fit: cover; /* Maintain aspect ratio */
    overflow: hidden; /* Hide overflow */
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.blog img:hover {
    transform: scale(1.05); /* Scale image on hover for a smoother effect */
}

/* Blog Titles and Text */
.blog h2 {
    color: #FFFFFF; /* Title color */
    font-weight: lighter;
    font-size: 2rem; /* Title font size */
    padding-bottom: 0.5rem; /* Space below title */
    border-bottom: 1px solid white; /* Underline effect */
}

.blog h4 {
    color: #FFFFFF; /* Subtitle color */
    font-size: 1rem; /* Subtitle font size */
}

.blog p {
    color: #FFFFFF; /* Paragraph color */
    font-size: 1.2rem; /* Paragraph font size */
    font-weight: lighter;
    padding-bottom: 3rem; /* Space below paragraph */
}

/* Button Styles */
.blog-content .btn-primary {
    position: absolute; /* Position button at the bottom */
    bottom: 0; /* Align to bottom */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .blog-content {
        width: 100%; /* Full width on mobile */
    }

    .blog img {
        height: 15rem; /* Adjust image height */
        width: 100%; /* Responsive image width */
    }

    .blog h2 {
        font-size: 1.5rem; /* Smaller heading on mobile */
    }

    .blog p {
        font-size: 1rem; /* Smaller paragraph text on mobile */
    }
}
/*----------------------------------------CARD----------------------------------------*/

/* Benefits Section Styles */
.benefits-section {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0rem; /* Combined padding for cleaner code */
}

/* Card Container Styles */
.card-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of cards */
    justify-content: space-around;
    gap: 2.5rem; /* Space between cards */
    padding: 2.5rem 0; /* Top and bottom padding */
}

/* Card Styles */
.card-container .card {
    display: flex;
    flex-direction: column;
    width: 16rem; /* Fixed width for cards */
    gap: 1rem; /* Space inside the card */
    border-radius: 0.5rem;
    border: 2px solid #FFFFFF; /* Border color */
    padding: 1rem; /* Padding inside the card */
    transition: transform 0.3s ease; /* Smooth transform on hover */
}

.card-container .card:hover {
    transform: scale(1.05); /* Slight scale effect on hover */
}

/* Card Image Styles */
.card-container .card img {
    width: 5rem; /* Fixed width for images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 0.5rem; /* Rounded corners */
    margin: 1rem; /* Margin around the image */
    overflow: hidden; /* Hide overflow */
}

/* Card Content Styles */
.card-container .card .card-content {
    display: flex;
    flex-direction: column;
    width: 100%; /* Full width for card content */
    gap: 1rem; /* Space inside the content */
}

.card-container .card .card-content h3,
.card-container .card .card-content p,
.what-value-trade .benefits-section h1{
    font-weight: lighter; /* Lighter font weight */
    padding-left: 1.5rem; /* Consistent padding */
    padding-right: 1.5rem;
	color: white;
}

.card-container .card .card-content h3{
    font-weight: bold; /* Lighter font weight */
    padding-left: 1.5rem; /* Consistent padding */
    padding-right: 1.5rem;
	color: white;
}

.what-value-trade .benefits-section h1{
    font-weight: bolder; /* Lighter font weight */
	color: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .card-container {
        justify-content: center; /* Center cards on smaller screens */
    }

    .card-container .card {
        width: 100%; /* Full width for cards on mobile */
        max-width: 300px; /* Set a maximum width */
    }
}
/*----------------------------------------CONTACT CARD----------------------------------------*/
/* Contact Card Styles */
.contact-card {
    max-width: 50%; /* Limit width for larger screens */
    padding: 20px; /* Padding inside the card */
    margin: 0 auto; /* Center the card */
}

/* Heading Styles */
.contact-card h2 {
    font-weight: lighter; /* Lighter font weight */
    font-size: 3rem; /* Heading size */
    color: #FFFFFF; /* Heading color */
    margin-bottom: 2rem; /* Space below heading */
    border-bottom: 1px solid white; /* Underline effect */
}

/* Contact Info Styles */
.contact-card .contact-info {
    margin-bottom: 20px; /* Space below contact info */
}

.contact-card .contact-info p,
.contact-card .contact-info address {
    font-size: 1.5rem; /* Font size for paragraphs */
    color: white; /* Text color */
    margin-bottom: 1rem; /* Space below paragraphs */
    margin-top: 2.5rem; /* Space above paragraphs */
}

.contact-card .contact-info a {
    font-size: 1.2rem; /* Font size for links */
    color: white; /* Link color */
    font-weight: lighter; /* Lighter font weight */
}

/* Social Media Styles */
.contact-card .social-media {
    margin-bottom: 20px; /* Space below social media section */
}

.contact-card .social-media p {
    font-size: 1.5rem; /* Font size for social media text */
    color: white; /* Text color */
    margin-bottom: 1rem; /* Space below social media text */
    margin-top: 2.5rem; /* Space above social media text */
}

.contact-card .social-media ul {
    list-style: none; /* Remove default list styles */
    padding: 0; /* Reset padding */
}

/* Social Media List Item Styles */
.contact-card .social-media li {
    display: inline-block; /* Align items horizontally */
}

.contact-card .social-media a {
    display: flex; /* Flexbox for better alignment */
    align-items: center; /* Center items vertically */
    height: auto; /* Allow natural height */
    width: 3rem; /* Fixed width for links */
    gap: 1rem; /* Space between icon and text */
}

.contact-card .social-media a:hover {
    cursor: pointer; /* Pointer cursor on hover */
}

/* Social Media Image Styles */
.contact-card .social-media img {
    width: 2rem; /* Fixed width for icons */
    margin-right: 2.5rem; /* Space to the right of the image */
    vertical-align: middle; /* Align image vertically */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contact-card {
        max-width: 90%; /* Full width on mobile screens */
    }

    .contact-card h2 {
        font-size: 2.5rem; /* Smaller heading on mobile */
    }

    .contact-card .contact-info p,
    .contact-card .contact-info address,
    .contact-card .contact-info a {
        font-size: 1.2rem; /* Smaller font size on mobile */
    }

    .contact-card .social-media p {
        font-size: 1.2rem; /* Smaller font size for social media text */
    }
}
/*----------------------------------------/CONTACT CARD----------------------------------------*/


/*----------------------------------------/CONTACT FORM----------------------------------------*/
/* Contact Container Styles */
.contact-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of the contact form */
    justify-content: center; /* Center the contents */
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column; /* Stack form elements vertically */
    padding: 1rem; /* Padding inside the form */
    width: 40%; /* Set width for larger screens */
    margin: 0 auto; /* Center the form */
}

/* Label Styles */
.contact-form label {
    font-size: 1.2rem; /* Font size for labels */
    font-weight: lighter; /* Lighter font weight */
    color: white; /* Label color */
    margin-bottom: 1rem; /* Space below labels */
    display: block; /* Block display for labels */
}

/* Input and Textarea Styles */
.contact-form input, 
.contact-form textarea {
    width: 100%; /* Full width for inputs */
    padding: 0.5rem; /* Padding inside inputs */
    margin-bottom: 1.5rem; /* Space below inputs */
    background-color: transparent; /* Transparent background */
    border: 1px solid #ccc; /* Border style */
    color: white; /* Text color */
}

/* Focused Input and Textarea Styles */
.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #800020; /* Change border color on focus */
}

/* Textarea Specific Styles */
.contact-form textarea {
    height: 100px; /* Fixed height for textarea */
}

/* Submit Button Styles */
.contact-form input[type="submit"] {
    background-color: #FFFFFF; /* Background color for the button */
    color: #000000; /* Text color for the button */
    padding: 1rem 2rem; /* Padding inside the button */
    border: none; /* No border */
    border-radius: 0.5rem; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
    font-size: 1.5rem; /* Button font size */
    font-weight: lighter; /* Lighter font weight */
}

/* Submit Button Hover Styles */
.contact-form input[type="submit"]:hover {
    background-color: transparent; /* Transparent background on hover */
    color: #FFFFFF; /* Change text color on hover */
    font-size: 1.2rem; /* Adjust font size on hover */
    border: 1px solid #FFFFFF; /* Border on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contact-form {
        width: 90%; /* Full width for smaller screens */
    }

    .contact-form input[type="submit"] {
        padding: 0.8rem 1.5rem; /* Adjust padding for smaller screens */
        font-size: 1.2rem; /* Smaller font size for the button */
    }
}
/*----------------------------------------/CONTACT FORM----------------------------------------*/



/*----------------------------------------CONTACT SECTION----------------------------------------*/
.contact-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 50px;
	padding: 50px;
}
/*----------------------------------------/CONTACT SECTION----------------------------------------*/





/*----------------------------------------FAQ CARD----------------------------------------*/

/* FAQ Content Styles */
.faq .faq-content {
    max-width: 800px; /* Maximum width for the FAQ section */
    margin: 0 auto; /* Center the content */
    padding: 20px; /* Padding inside the content */
    background-color: #f2f2f2; /* Light background color */
    border: 1px solid #ddd; /* Border for the content */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* FAQ List Styles */
.faq dl {
    margin-bottom: 20px; /* Space below each FAQ item */
}

/* FAQ Term Styles */
.faq dt {
    font-weight: bold; /* Bold font for terms */
    font-size: 18px; /* Font size for terms */
    margin-bottom: 10px; /* Space below terms */
}

/* FAQ Description Styles */
.faq dd.answer {
    margin-bottom: 20px; /* Space below answers */
    padding-left: 20px; /* Indentation for answers */
    color: #333; /* Text color for answers */
    font-size: 16px; /* Font size for answers */
}

/* Optional Decorative Element Before Answers */
.faq dd.answer:before {
    content: "➤"; /* Decorative bullet or icon */
    margin-right: 10px; /* Space between icon and text */
    color: #666; /* Color of the decorative element */
    font-size: 1.2em; /* Size of the decorative element */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .faq .faq-content {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .faq dt {
        font-size: 16px; /* Smaller font size for terms on mobile */
    }

    .faq dd.answer {
        font-size: 14px; /* Smaller font size for answers on mobile */
    }
}
/*----------------------------------------/FAQ CARD----------------------------------------*/

/*----------------------------------------MAP----------------------------------------*/
/* Map Section Styles */
.map {
    max-width: 100%; /* Full width for the map container */
    margin: 0 auto; /* Center the map section */
    padding: 20px; /* Padding around the section */
}

/* Map Heading Styles */
.map h2 {
    font-size: 30px; /* Font size for the heading */
    color: #3B3C40; /* Heading color */
    font-weight: bold; /* Bold font weight */
    margin-bottom: 25px; /* Space below the heading */
    text-align: center; /* Center the heading text */
}

/* Map Iframe Styles */
.map iframe {
    width: 100%; /* Full width for the iframe */
    height: 400px; /* Fixed height for the iframe */
    border: none; /* Remove border */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .map h2 {
        font-size: 24px; /* Smaller font size for the heading on mobile */
    }

    .map iframe {
        height: 300px; /* Adjust height for the iframe on mobile */
    }
}
/*----------------------------------------/MAP----------------------------------------*/


/*----------------------------------------FAQ SECTION----------------------------------------*/

.faq {
	padding: 50px;
}

.faq h1 {
	font-size: 30px;
	color: #3B3C40;
	font-weight: bold;
	margin-bottom: 25px;
	text-align: center;
}


/*----------------------------------------/FAQ SECTION----------------------------------------*/



/*----------------------------------------SECTION 1----------------------------------------*/
.section1 {
	padding-left: 100px;
	padding-right: 100px;
	background-color: #2e3192;
	
}
/*----------------------------------------/SECTION 1----------------------------------------*/


/*----------------------------------------SECTION 3----------------------------------------*/
.section3 {
	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
	grid-gap: 40px;
	padding-bottom: 25px;
	padding-left: 100px;
	padding-right: 100px;
	padding-top: 50px;
	background: #f2f2f2;
	
	
	/*border: 3px solid #73AD21;*/
}

.section3 h1 {
	font-size: 3rem;
	color: #3B3C40;
	
	/*border: 3px solid #73AD21;*/
}
/*----------------------------------------/SECTION 3----------------------------------------*/



/*----------------------------------------SECTION 4----------------------------------------*/
.section4 {
	padding-top: 100px;
	padding-bottom: 150px;
	padding-left: 0px;
	padding-right: 0px;
	grid-gap:  50px;
	display: flex;
  	flex-direction: column;
  	justify-content: center;
	align-items: center;
	background-color: #3B3C40;
	
}

.section4 h1 {
	font-size: 3rem;
	color: #FFFFFF;
}


/*----------------------------------------/SECTION 4----------------------------------------*/



/*----------------------------------------VALUES SECTION----------------------------------------*/
.values-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 50px;
	margin: 0px;
	background: #f2f2f2;
	
	/*border: 3px solid #73AD21;*/
}

.values-section h1 {
	font-size: 3rem;
	color: #3B3C40;
	
	/*border: 3px solid #73AD21;*/
}
/*----------------------------------------/VALUES SECTION----------------------------------------*/



/*----------------------------------------TEAM SECTION----------------------------------------*/
.team-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 50px;
	margin: 0px;
	background: #f2f2f2;
	
	/*border: 3px solid #73AD21;*/
}

.team-section h1 {
	font-size: 3rem;
	color: #3B3C40;
	
	/*border: 3px solid #73AD21;*/
}
/*----------------------------------------/TEAM SECTION----------------------------------------*/



/*----------------------------------------ABOUT SECTION----------------------------------------*/
.about-section {
	padding-right: 40px;
	padding-left: 40px;
	margin: 0px;
	
	/*border: 3px solid #73AD21;*/
}
/*----------------------------------------/ABOUT SECTION----------------------------------------*/



/*----------------------------------------PRODUCTS SECTION----------------------------------------*/
.products-section {
	padding-right: 40px;
	padding-left: 40px;
	margin: 0px;
	
	/*border: 3px solid #73AD21;*/
}
/*----------------------------------------/PRODUCTS SECTION----------------------------------------*/



/*----------------------------------------FOOTER----------------------------------------*/
/* Footer Styles */
.footer {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    background-color: #3B3C40; /* Dark background */
    padding: 10rem 5rem; /* Padding for the footer */
    gap: 5rem; /* Space between sections */
}

/* Call To Action (CTA) Styles */
.CTA {
    height: 25rem; /* Fixed height for CTA */
    padding: 2.5rem 5rem; /* Padding inside CTA */
    background-image: url("../images/Sky Line.jpg"); /* Background image */
    background-position: center; /* Center the image */
    background-size: cover; /* Cover the area */
    border: 2px solid #FFFFFF; /* White border */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center content */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text */
    gap: 2.5rem; /* Space between elements */
    color: #fff; /* Text color */
}

.CTA p {
    font-size: 1.2rem; /* Font size for paragraph */
    max-width: 50rem; /* Max width for the paragraph */
}

/* CTA Button Container */
.CTA .CTA-buttons {
    display: flex;
    flex-direction: row; /* Align buttons horizontally */
    justify-content: center; /* Center buttons */
    gap: 2rem; /* Space between buttons */
    padding-top: 2.5rem; /* Space above buttons */
}

/* Footer Links Styles */
.footer .links {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of link sections */
    justify-content: space-around; /* Space evenly */
}

.footer .links .band {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    width: 25%; /* Set width for each band */
    padding-right: 50px; /* Space to the right */
}

.footer .links .band img {
    height: 100px; /* Fixed height for images */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Cover the area */
}

/* Links Container Styles */
.footer .links .links-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of links */
    justify-content: space-around; /* Space evenly */
    gap: 2rem; /* Space between links */
}

/* Links List Styles */
.footer .links-list {
    display: flex;
    flex-direction: column; /* Stack links vertically */
    padding: 1rem; /* Padding inside the list */
    width: 15rem; /* Fixed width for the links list */
}

.footer .links-list p {
    text-decoration: none; /* Remove underline from paragraph */
    color: #FFFFFF; /* Color for paragraph text */
    font-weight: bold; /* Bold text */
}

.footer .links-list a {
    padding: 5px 0; /* Padding for links */
    text-decoration: none; /* Remove underline */
    color: #c8c7e1; /* Link color */
    font-weight: lighter; /* Lighter font weight */
}

.footer .links-list a:hover {
    color: #FFFFFF; /* Change color on hover */
    text-decoration-line: underline; /* Underline on hover */
}

/* Legal and Social Styles */
.footer .legal-social {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 1rem; /* Space between elements */
    position: relative; /* Position for absolute elements */
}

.footer .social-media {
    position: absolute; /* Position to the right */
    right: 0; /* Align to the right */
}

.footer .social-media ul {
    list-style: none; /* Remove default list styles */
    padding: 0; /* Reset padding */
}

.footer .social-media li {
    display: inline-block; /* Align items horizontally */
}

.footer .social-media a {
    height: auto; /* Allow natural height */
    width: 3rem; /* Fixed width for icons */
    margin-right: 2.5rem; /* Space to the right */
}

.footer .social-media a:hover {
    cursor: pointer; /* Pointer cursor on hover */
}

.footer .social-media img {
    width: 2rem; /* Fixed width for icons */
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
    vertical-align: middle; /* Align image vertically */
}

/* Legal Text Styles */
.footer .legal p {
    color: #FFFFFF; /* Text color */
    font-weight: lighter; /* Lighter font weight */
    position: absolute; /* Positioning */
    left: 0; /* Align to the left */
}

/* Brief Section Styles */
.footer .brief p {
    padding-top: 50px; /* Space above text */
    color: white; /* Text color */
    font-weight: lighter; /* Lighter font weight */
    width: 100%; /* Full width */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .CTA {
    height: auto; /* Fixed height for CTA */
    padding: 2rem 2rem; /* Padding inside CTA */
    border: 1px solid #FFFFFF; /* White border */
    gap: 1.5rem; /* Space between elements */
    color: #fff; /* Text color */
}
	.CTA .CTA-buttons {
    display: flex;
    flex-direction: column; /* Align buttons horizontally */
    justify-content: center; /* Center buttons */
    gap: 2rem; /* Space between buttons */
    padding-top: 2rem; /* Space above buttons */
}
	.footer .links .band {
        width: 100%; /* Full width for bands on mobile */
        padding-right: 0; /* Remove right padding */
        margin-bottom: 20px; /* Space below each band */
    }

    .footer .links-list {
        width: 100%; /* Full width for links list on mobile */
    }
}
/*----------------------------------------/FOOTER----------------------------------------*/

