/* Resetting margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: "Prompt", serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Style */
header {
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo img {
    width: max-content;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #ffffff;
    color: #333;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons a {
	width: 200px;
    padding: 15px 30px;
    font-size: 16px;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-buttons a:hover {
    background-color: #0056b3;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.feature {
    width: 250px;
    text-align: center;
}

.feature h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature p {
    font-size: 16px;
    color: #666;
}

/* Footer Section */
footer {
    background-color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

a:link { 
  text-decoration: none; 
} 
a:visited { 
  text-decoration: none; 
} 
a:hover { 
  text-decoration: none; 
} 
a:active { 
  text-decoration: none; 
}
