/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Ensures smooth scrolling effect */
html {
    scroll-behavior: smooth;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: white;
    border-bottom: 2px solid #ccc;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Logo and name */
.logo {
    display: flex;
    align-items: center;
	gap: 8px;
}

.logo h1 span {
    font-size: 36px; /* Adjust as needed */
    font-weight: bold;
    transition: font-size 0.3s ease;
}

.logo img {
    width: 72px; /* Default size for desktop */
    height: auto;
    transition: width 0.3s ease; /* Smooth transition */
}

.logo h1 {
    font-size: 24px;
}

.logo-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep text color unchanged */
    display: inline-block; /* Ensure clickable area covers the whole div */
}

.logo {
    cursor: pointer; /* Show pointer cursor on hover */
}

/* Navigation buttons */
nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    background: none;
    border: 2px solid #4A713D;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    color: black;
    border-radius: 5px;
	transition: font-size 0.3s ease;
	text-decoration: none; /* Removes underline */
	color: inherit; /* Ensures the text color matches the surrounding style */
	font-family: "Comfortaa", sans-serif;
}

.nav-btn:hover {
    background-color: #F2F7EC;
    color: #000;
}

/* Mobile-friendly menu */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex; /* Enables Flexbox */
	flex-direction: column;
	overflow: hidden;
    align-items: center; /* Centers content vertically */
    justify-content: center;
    min-height: 100vh;
    background-color: #F2F7EC;
	width: 100%;
	padding-top: 104px;  /* Space to push content down */
    margin-top: -104px;  /* Pull section back up visually */
}

.hero-content {
    display: flex;
    align-items: center; /* Aligns text and image in the middle */
    justify-content: space-between; /* Adds space between them */
    gap: 80px; /* Adds space between text and image */
	padding: 80px 20px;
}

/* Left Side (Text) */
.hero-text {
	flex: 1; /* Takes the other half of the space */
    max-width: 50%; /* Ensures text doesn't stretch too wide */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Centers text inside */
}

/* Title Styling */
.hero-text h1 {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.5;
}

/* Colored App Name */
.app-green {
    color: #4B662C;
}

.app-orange {
    color: #FF9800;
}

/* Text Styling */
.hero-text p {
    font-size: 24px;
	font-weight: 400;
    margin: 15px 0;
	margin-bottom: 60px;
	line-height: 2;
}

/* CTA Button Container */
.cta-buttons {
    display: flex;
    gap: 15px; /* Spacing between buttons */
    flex-wrap: wrap; /* Allows stacking on small screens */
    justify-content: center;
}

/* CTA Buttons */
.cta-btn img {
    width: auto;  /* Large size for desktop */
    height: 70px;  /* Maintain aspect ratio */
    transition: all 0.3s ease; /* Smooth resize */
}

/* Right Side (Image) */
.hero-image {
    flex: 1; /* Takes the other half of the space */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Styling */
.hero-image img {
    max-width: 100%; /* Keeps image responsive */
    height: auto;
    width: 800px; /* Keeps the original size */
}

.container {
    max-width: 1800px; /* Set a limit for large screens */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Add some space on mobile */
}

.about {
    display: flex; /* Enables Flexbox */
	flex-direction: column;
	overflow: auto;
    align-items: center; /* Centers content vertically */
    justify-content: center;
	width: 100%;
	padding-top: 104px;
    margin-top: -104px;
}

.about-container {
	max-width: 1600px;
    margin: 0 auto;
	padding: 50px 20px;
}

.about-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px; 
	width: 100%;
	padding: 30px 0;
}

.about-row-reverse {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px; 
	flex-direction: row-reverse;
	width: 100%;
	padding-top: 60px;
}

.about-image {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-image img {
	max-width: 100%; /* Keeps image responsive */
    height: auto;
    width: 500px; /* Keeps the original size */
}

.about-text {
	flex: 1; /* Takes the other half of the space */
    max-width: 50%; /* Ensures text doesn't stretch too wide */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Centers text inside */
}

.about-text h1 {
    font-size: 36px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.about-text p {
    font-size: 24px;
    margin: 15px 0;
	margin-bottom: 40px;
	line-height: 2;
}

.how-to-use {
    display: flex;
	text-align: center;
	justify-content: center;
	width: 100%;
	padding-top: 104px;
    margin-top: -104px;
}

.how-container {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center everything */
    width: 100%;
    text-align: center;
	padding: 50px 20px;
}

.how-section-title {
	width: 100%;
	display: flex;
	justify-content: center;
    text-align: center; /* Centers text inside */
	margin-top: 30px;
	margin-bottom: 96px;
}

.how-section-title h1 {
    font-size: clamp(36px, 5vw, 72px);
}

.tutorial {
	display: flex;
	width: 100%;
    justify-content: center;
	gap: 60px; /* Increased space between columns */
	max-width: 1600px; /* Set a limit for large screens */
    margin: 0 auto; /* Center the content */
    padding: 20px 20px; /* Add some space on mobile */
    flex-wrap: wrap;
}

.how-column {
    display: flex;
    flex-direction: column;
	justify-content: flex-start;
    align-items: center;
	width: 30%;
	text-align: center;
	flex: 1 1 300px;
}

.how-image {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%; /* Keeps image responsive */
    height: auto;
    width: 300px; /* Keeps the original size */
}

.how-text {
    width: 70%; /* Ensures text doesn't stretch too wide */
    display: flex;
    flex-direction: column;
	align-items: center; /* Ensures vertical centering */
    justify-content: center;
    text-align: center;
}

.how-text h1 {
	min-height: 3.5em;
    font-size: 24px;
	margin-top: 40px;
	margin-bottom: 12px;
	line-height: 1.5;
}

.how-text p {
    font-size: 18px;
    margin: 15px 0;
	line-height: 2;
}

/* Keep tutorial step illustrations a comfortable size */
.tutorial img,
.how-column img {
  width: 100%;
  max-width: 260px;  /* adjust this number if you want them larger/smaller */
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;  /* centers the image and adds some space below */
}

.bullet-list {
    text-align: left; /* Aligns text properly */
    list-style-type: disc; /* Ensures dots as bullet points */
    padding-left: 20px; /* Adds spacing for indentation */
    margin-top: 10px; /* Adds some space above the list */
        line-height: 2;
        margin-bottom: 96px;
}

.bullet-list li {
    font-size: 18px; /* Adjusts text size */
        font-family: 'Comfortaa', sans-serif;
}

.hero-microcopy {
        font-size: 16px;
        margin-top: 16px;
        line-height: 1.6;
        color: #555;
        text-align: center;
}

.section-block {
        width: 100%;
        padding: 80px 20px;
        display: flex;
        justify-content: center;
}

.section-container {
        max-width: 1600px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
}

.section-title {
        font-size: clamp(32px, 4vw, 56px);
        color: #4B662C;
}

.section-intro {
        font-size: 20px;
        line-height: 1.8;
        max-width: 900px;
}

.section-text {
        font-size: 18px;
        line-height: 1.9;
        max-width: 900px;
}

.section-list {
        list-style: none;
        padding: 0;
        margin: 20px auto 0;
        display: grid;
        gap: 14px;
        max-width: 700px;
}

.section-list li {
        font-size: 18px;
}

.features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
        width: 100%;
        margin-top: 30px;
}

.feature-item {
        background: #F2F7EC;
        border: 1px solid #E0E7D9;
        border-radius: 12px;
        padding: 24px;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: 100%;
}

.feature-title {
        font-size: 22px;
        color: #4B662C;
}

.feature-text {
        font-size: 18px;
        line-height: 1.8;
}

@media (min-width: 900px) {
        .hero-text {
                align-items: flex-start;
                text-align: left;
        }

        .hero-text .hero-microcopy {
                text-align: left;
        }
}

.benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        width: 100%;
        margin-top: 24px;
}

.benefit-item {
        background: #F7FAF1;
        border: 1px solid #E0E7D9;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: left;
        height: 100%;
}

.benefit-icon {
        width: 48px;
        height: 48px;
}

.benefit-item p {
        font-size: 18px;
        line-height: 1.6;
}

.for-you-box {
        background: #F7FAF1;
        border: 1px solid #E0E7D9;
        border-radius: 12px;
        padding: 32px 40px;
        width: 100%;
        max-width: 1200px;
}

.for-you-columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
        text-align: left;
}

.for-you-columns ul {
        list-style: disc;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
}

.for-you-columns li {
        line-height: 1.8;
        font-size: 18px;
}

.comparison {
        background-color: #F7F3EA;
}

.final-cta .cta-buttons {
        margin-top: 12px;
        justify-content: center;
}

.info {
	display: flex; /* Enables Flexbox */
	flex-direction: column;
	align-items: center;
    background-color: #FF9800;
    text-align: center;
	padding: 80px 20px;
}

.info-container {
    display: flex;
    justify-content: center;
    gap: 40px; /* Increased space between columns */
    max-width: 1200px;
    flex-wrap: wrap;
}

.info-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px; /* Ensures even spacing */
}

.info-column h3 {
    font-size: 24px;
    margin-bottom: 36px;
    color: #4B662C;
	font-family: "Onest", sans-serif;
}

.info-column a {
    font-size: 18px;
	text-decoration: none;
    color: #FFFFFF;
    margin-bottom: 18px;
	font-family: "Comfortaa", sans-serif;
	font-weight: bold;
}

.info-column p {
    font-size: 18px;
	text-decoration: none;
    margin-bottom: 18px;
	color: #FFFFFF;
	font-family: "Comfortaa", sans-serif;
}

.info-column a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 75px;
    font-size: 16px;
    color: #555;
}

@media (max-width: 900px) {
	.nav-buttons {
		display: none; /* Keeps the buttons hidden */
		flex-direction: column;
		align-items: center;
		position: absolute;
		top: 100%;
		right: 0;
		background: white;
		border: 1px solid #ccc;
		width: 200px;
		text-align: center;
		padding: 10px;
	}
	
	/* Show the menu when active */
	.nav-buttons.active {
		display: flex; /* Becomes visible when the menu is toggled */
	}

	/* Style for each button */
	.nav-btn {
		display: block;
		padding: 10px 20px;
		width: 100%;
		border: none;
		background: none;
		color: black;
		font-size: 16px;
		text-align: center;
		cursor: pointer;
		margin: 5px 0;
		text-decoration: none; /* Removes underline */
		color: inherit; /* Ensures the text color matches the surrounding style */
	}

	/* Hover effect */
	.nav-btn:hover {
		background-color: rgba(0, 0, 0, 0.1);
		border-radius: 10px;
	}

	/* Ensures the menu toggle button (hamburger icon) is visible */
	.menu-toggle {
		display: block;
		cursor: pointer;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.logo h1 span {
        font-size: 24px; /* Smaller size on smaller screens */
    }

    .logo img {
        width: 48px; /* Smaller on mobile */
    }
	
	/* Styles for the nav container */
	.nav-buttons {
		display: none; /* Keeps the buttons hidden */
		flex-direction: column;
		align-items: center;
		position: absolute;
		top: 100%;
		right: 0;
		background: white;
		border: 1px solid #ccc;
		width: 200px;
		text-align: center;
		padding: 10px;
	}

	/* Show the menu when active */
	.nav-buttons.active {
		display: flex; /* Becomes visible when the menu is toggled */
	}

	/* Style for each button */
	.nav-btn {
		display: block;
		padding: 10px 20px;
		width: 100%;
		border: none;
		background: none;
		color: black;
		font-size: 16px;
		text-align: center;
		cursor: pointer;
		margin: 5px 0;
		text-decoration: none; /* Removes underline */
		color: inherit; /* Ensures the text color matches the surrounding style */
	}

	/* Hover effect */
	.nav-btn:hover {
		background-color: rgba(0, 0, 0, 0.1);
		border-radius: 10px;
	}

	/* Ensures the menu toggle button (hamburger icon) is visible */
	.menu-toggle {
		display: block;
		cursor: pointer;
	}
	
	.hero {
        flex-direction: column; /* Stack elements */
		text-align: center;
		padding-top: 80px;
		margin-top: -80px;
    }
	
	.hero-content {
        flex-direction: column; /* Stack on small screens */
        text-align: center;
		gap: 40px;
		padding-top: 40px;
    }
	
	.hero-image img {
		width: 90%; /* Reduce size on smaller screens */
		order: 1
    }
	
	.hero-text {
		order: 2
	}
	
	.hero-text h1 {
        font-size: 32px;
		margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 16px;
		margin-bottom: 36px;
    }
	
	.hero-text, .hero-image {
        max-width: 100%;
    }
		
    .cta-btn img {
        width: 180px;
		height: auto;
    }
	
	.cta-buttons {
        flex-direction: column; /* Stack them */
        align-items: center; /* Center them */
        gap: 15px; /* More space between buttons */
    }

    .cta-buttons a {
        width: 80%; /* Make buttons take more space */
        max-width: 250px; /* Avoid them being too wide */
    }
	
	.about {
		flex-direction: column;
		text-align: center;
		padding-top: 80px;
		margin-top: -80px;
	}
	
	.about-container {
		padding: 30px 20px;
	}
	
	.about-row {
        flex-direction: column;
        text-align: center;
    }
	
	.about-row-reverse {
        flex-direction: column;
        align-items: center;
    }
	
	.about-image, .about-text {
        max-width: 100%;
    }
	
	.about-image img {
        width: 90%;
    }
	
	.about-text h1 {
		font-size: 28px;
		margin-bottom: 16px;
	}
	
	.about-text p {
		font-size: 16px;
		margin-bottom: 24px;
	}
	
	.how-to-use {
		padding-top: 80px;
		margin-top: -80px;
		padding-bottom: 40px;
	}
	
	.how-container {
        flex-direction: column;
        align-items: center;
		padding: 30px 20px;
    }
	
	.how-section-title {
		margin-top: 0;
		margin-bottom: 30px;
	}
	
	.how-section-title h1 {
		font-size: clamp(36px, 5vw, 72px);
		margin-top: 32px;
		margin-bottom: 0;
	}
	
	.tutorial {
		gap: 80px;
	}
	
	.how-text {
		width: 90%;
	}

	.how-text h1 {
		font-size: 24px;
		margin-top: 28px;
		margin-bottom: 0;
	}
	
	.how-text p {
		font-size: 16px;
	}
	
	.bullet-list li {
		font-size: 16px;
		font-family: 'Comfortaa', sans-serif;
	}
	
	.how-column {
        width: 100%;
    }
	
	.bullet-list {
		margin-bottom: 72px;
	}
	
	.info {
		flex-direction: column;
		padding-top: 80px;
		margin-top: -80px;
	}
	
	.info-container {
        flex-direction: column;
        align-items: center;
		gap: 36px;
		padding: 30px 20px;
    }

    .info-column {
        margin-bottom: 16px; /* More space between stacked columns */
    }
	
	.info-column h3 {
		font-size: 22px;
	}
	
	.info-column a {
		font-size: 16px;
	}
	
	.info-column p {
		font-size: 16px;
	}

    .copyright {
        margin-top: 0;
		font-size: 14px;
    }
	
}
