
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header */
header {
    background: #2b2d42;
    color: white;
    padding: 1em 0;
    text-align: center;
}

header .logo {
    max-width: 150px;
    margin-bottom: 1em;
}

.header-content h1 {
    margin: 0;
}

/* Hero Section */
.hero {
    background: url('assets/image_3.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 5em 0;
}

.hero .cta-button {
    background: #ef233c;
    color: white;
    padding: 0.8em 2em;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.hero .cta-button:hover {
    background: #d90429;
}

/* Section Styles */
section {
    padding: 3em 0;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.about, .solution {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2em;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: 1em 0;
}

/* Footer */
footer {
    background: #2b2d42;
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
}

.footer-content p {
    margin: 0;
}
