/* General Styles */
body {
    background: #f4f7fa;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #0052cc;
    color: #fff;
    padding: 0;
}

.logo {
    font-weight: bold;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: #ffd700;
}

header nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 24px 0;
}

.hero {
    background: #fff;
    padding: 40px 0 30px 0;
    text-align: center;
}

.cta-buttons .btn {
    margin: 10px 10px 0 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0052cc;
    color: #fff;
}

.btn-primary:hover {
    background: #003d99;
}

.btn-secondary {
    background: #fff;
    color: #0052cc;
    border: 2px solid #0052cc;
}

.btn-secondary:hover {
    background: #e6f0ff;
}

.stats {
    background: #f9fbfd;
    padding: 40px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0001;
    padding: 20px;
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #0052cc;
}

.stat-label {
    color: #333;
    margin-top: 8px;
}

.services {
    background: #fff;
    padding: 50px 0;
}

.section-title {
    font-size: 2em;
    color: #0052cc;
    margin-bottom: 20px;
    font-weight: bold;
}

.services-grid {
    display: flex;
    gap: 24px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0001;
    padding: 24px;
    flex: 1 1 300px;
    text-align: center;
    min-width: 280px;
}

.service-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.service-features {
    text-align: left;
    margin: 18px 0 18px 0;
}

.process {
    background: #f9fbfd;
    padding: 50px 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
}

.process-step {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0001;
    padding: 24px;
    flex: 1 1 220px;
    min-width: 220px;
}

.process-step h3 {
    margin-top: 0;
    color: #0052cc;
    font-size: 1.2em;
}

.testimonials {
    background: #f9fbfd;
    padding: 50px 0;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0001;
    padding: 28px 32px;
    margin: 0 10px;
}

.testimonial-text {
    font-size: 1.15em;
    color: #222;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #0052cc;
    margin-bottom: 2px;
}

.testimonial-role {
    color: #666;
    font-size: 0.98em;
    margin-bottom: 0;
}

.contact {
    background: #fff;
    padding: 50px 0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: #f9fbfd;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0001;
    padding: 32px 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    box-sizing: border-box;
    margin-top: 4px;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

footer {
    background: #222;
    color: #fff;
    padding: 40px 0 10px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 180px;
}

.footer-section h3 {
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #bbb;
    font-size: 0.95em;
}

.whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #25d366;
    color: #fff !important;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 2px 8px #0002;
    text-decoration: none !important;
    z-index: 1000;
    transition: background 0.2s;
    display: inline-block;
}
.whatsapp-btn:hover {
    background: #128c7e;
}