/* Global styles */
body {
    font-family: Helvetica Arial, sans-serif; 
    margin: 0;
    padding: 0;
    color: #505050;
    background-color: #F0FBE4;
    scroll-behavior: smooth; /* Smooth scrolling for navigation */
}

/* Header styles */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 15px 20px;
    background-color: #005000;    
    color: #fff;
}

.header-content {
    display: flex;
    align-items: center;
}

.app-logo {
    height: 50px;
    margin-right: 10px;
}

h1 {
    font-size: 28px;
    margin: 0;
}

.app-store-button img {
    height: 40px;
}

/* Main content */
main {
    padding: 20px;
}

/* Overview Section */
.overview-section {
    margin-bottom: 30px;
	padding-left: 20px;
}

.overview-section h2 {
    font-size: 30px;
    color: #27ae60;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.overview-section p {
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.5;
}

/* Features Section */
.features-section {
    background-color: #FAFFE7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding-left: 20px;
    margin-top: 10px; /* Moves the whole section upward */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features-section h2 {
    font-size: 35px;
    color: #27ae60;
    margin-top: 10px; /* Reduce space above "Key Features" */
    margin-bottom: 10px; /* Space below "Key Features" */
}

/* Individual Feature Items */
.feature-item {
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 28px;
    color: #505050;
	margin-top: 40px; /* Increases space above the section title */
    margin-bottom: 10px; /* Increases space below the section title */
}

.feature-item ul {
    margin: 0;
    padding-left: 35px; /* Indent for bullets */
}

.feature-item ul li {
    margin-bottom: 15px; /* Space between bullets */
    list-style: disc; /* Ensures bullets are displayed */
}

.feature-item ul li a {
	font-size: 20px;
    text-decoration: none;
    color: #0000AB; /* Black text for links */	
    font-weight: normal; /* Normal weight */
    line-height: 1.5; /* Increases vertical spacing between links */
}

.feature-item ul li a:hover {
    text-decoration: underline; /* Underline on hover */
	font-weight: bold; /* Normal weight */
    color: #005000; /* Green color on hover */
}

/* User Guide Section */
.user-guide {
    margin-top: 40px;
    background-color: #FAFFE7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding-left: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-guide h2 {
    font-size: 30px;
    color: #27ae60;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.user-guide h3 {
    font-size: 20px;
    color: #333;
    margin-top: 30px;
}

.user-guide a {
    font-size: 18px;	
    margin: 10px 0;
    line-height: 1.5;
}

.user-guide p {
    font-size: 16px;
	font-style: italic;
	font-weight: bold;
    margin: 10px 0;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #005000;
    color: #fff;
    font-size: 14px;
    margin-top: 30px;
}

.responsive-video {
    width: 80%;
    max-width: 300px;
    height: auto;
    margin-left: 10px;
}

