* {
    margin: 5px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #1F2937; /* Dark background color for hero and footer */
    margin-bottom: 0px;
}

.logo {
    font-size: 24px; /* Header Logo Text */
    color: #F9FAF8; /* Header Logo Text Color */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.link {
    color: #E5E7EB; /* Hero Secondary Text, Header Link Text */
    text-decoration: none;
    font-size: 18px; /* Header Link Text Size */
}

.main-content {
    background-color: #2d2d44;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    margin-top: 0px;
}

.left-content {
    max-width: 50%;
}

.left-content h1 {
    font-size: 48px; /* Hero Main Text Size */
    font-weight: 900; /* Extra Bold */
    color: #F9FAF8; /* Hero Main Text Color */
    margin: 0;
}

.left-content p {
    font-size: 18px; /* Hero Secondary Text Size */
    color: #E5E7EB; /* Hero Secondary Text Color */
    margin: 18px 0;
}

.signup-button {
    background-color: #3882F6; /* Button Color, Call to Action Background Color */
    color: #f6f7f8;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

.right-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 40%;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer {
    background-color: #1F2937; /* Footer Background Color */
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer a {
    color: #8ac3ec;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.info-section {
    text-align: center;
    padding: 40px;
    background-color: #f5f5f5;
}

.info-section h2 {
    font-size: 36px; /* Information Header Text Size */
    font-weight: 900; /* Extra Bold */
    margin-bottom: 20px;
    color: #1F2937; /* Information Header Text Color */
}

.info-boxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.info-box {
    width: 150px;
    text-align: center;
    color: #1F2937;
}

.box-image {
    width: 100%;
    height: 150px;
    border: 2px solid blueviolet;
    margin-bottom: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-section {
    padding: 40px;
    background-color: #E5E7EB; /* Quote Section Background Color */
    text-align: center;
    font-style: italic;
}

.testimonial-section blockquote {
    margin: 0;
    font-size: 36px; /* Quote Text Size */
    line-height: 1.5;
    font-weight: 300; /* Light Font Weight */
    font-style: italic; /* Italic */
    color: #1F2937; /* Quote Text Color */
}

.testimonial-section cite {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

.cta-section {
    background-color: #3882F6; /* CTA Background Color */
    color: white;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    border-radius: 8px;
}

.cta-content h2 {
    font-size: 24px; /* CTA Header Text Size */
    font-weight: bold;
    margin: 0 0 10px 0;
}

.cta-content p {
    margin: 0;
    font-size: 16px;
}

.cta-button {
    margin-left: 20px;
}

.signup-button {
    background-color: #3882F6; /* CTA Button Background Color */
    color: #f6f7f8;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.signup-button:hover {
    background-color: #ffffffcc;
}

.login-button {
    background-color: rgba(255, 165, 123, 0.9);
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: rgba(255, 165, 123, 1);
}
