* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
color: #ffffff;
background: radial-gradient(circle, rgb(96, 122, 137) 0%, rgb(55, 70, 82) 100%);
line-height: 1.6;
}

img {
max-width: 100%;
display: block;
}

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

header {
padding: 20px 0;
display: flex;
justify-content: space-between;
align-items: center;
}

header img {
max-height: 120px;
}

.btn {
display: inline-block;
padding: 14px 24px;
background-color: #ffffff;
color: #374652;
text-decoration: none;
font-weight: bold;
border-radius: 6px;
transition: 0.3s ease;
}

.btn:hover {
opacity: 0.85;
}

section {
padding: 80px 0;
}

.hero {
text-align: center;
}

.hero h1 {
font-size: 2rem;
margin-bottom: 32px;
}

.hero h2 {
font-size: 2.5rem;
margin-bottom: 32px;
}

.hero p {
font-size: 1.1rem;
max-width: 800px;
margin: 0 auto 48px;
}

.benefits {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.benefit-box {
background: rgba(255, 255, 255, 0.08);
padding: 25px;
border-radius: 10px;
text-align: center;
}

.about {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.about img {
border-radius: 12px;
max-width: 80%;
margin: 0 auto;
}

.faq-item {
background: rgba(255, 255, 255, 0.08);
border-radius: 8px;
margin-bottom: 15px;
overflow: hidden;
}

.faq-question {
padding: 18px;
cursor: pointer;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
}

.faq-answer {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 300px;
padding-bottom: 18px;
}

footer {
text-align: center;
padding: 40px 0;
font-size: 0.9rem;
opacity: 0.9;
}

.footer-links {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 15px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-links a img {
width: 28px;
height: 28px;
max-width: 28px;
transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-links a img:hover {
transform: scale(1.1);
opacity: 0.8;
}

@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}

.about {
grid-template-columns: 1fr;
}
}