
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.hero {
    text-align: center;
    background-color: #222;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    animation: fadeIn 1.2s ease-in;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.logo {
    font-size: 1.6em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

ul {
    list-style: none;
    padding-left: 0;
}

.services li {
    margin: 10px 0;
}

blockquote {
    font-style: italic;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid #555;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #333;
    font-size: 0.9em;
    background-color: #1a1a1a;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}

a {
    color: #fff;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn ease-in 1s forwards;
}

.slide-in {
    opacity: 0;
    transform: translateY(40px);
    animation: slideIn ease-out 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideIn {
    to { opacity: 1; transform: translateY(0); }
}

.image-section {
    text-align: center;
    margin: 40px 0;
}
.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.faq ul {
    list-style-type: none;
    padding-left: 0;
}
.faq li {
    margin-bottom: 20px;
}
