* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary: #ff8f00;
    --secondary-dark: #ff6f00;
    --dark: #263238;
    --light: #f5f5f5;
    --gray: #757575;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(46,125,50,0.2);
}

body {
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo span {
    font-size: 12px;
    color: var(--secondary);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
    font-size: 15px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

.header-btn {
    background: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn i {
    color: var(--secondary);
}

.header-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #4caf50 100%);
    padding: 60px 30px;
    color: var(--white);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: var(--secondary);
    border-bottom: 3px solid var(--secondary);
    display: inline-block;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.hero-feature {
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
}

.hero-feature i {
    color: var(--secondary);
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,143,0,0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 40px rgba(0,0,0,0.2);
}

/* Section Common */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
}

/* About Section */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: var(--primary);
    font-size: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 40px;
    color: var(--white);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Features/Why Choose Us */
.why-choose {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
    transition: 0.3s;
}

.feature-item:hover {
    background: var(--primary);
    color: var(--white);
}

.feature-item:hover .feature-icon {
    background: var(--white);
    color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
    transition: 0.3s;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content i {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.3;
}

.testimonial-content p {
    color: var(--gray);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 14px;
}

.testimonial-rating {
    color: #ffc107;
}

/* Documents Section */
.documents {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: var(--white);
}

.documents .section-title {
    color: var(--white);
}

.documents-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.doc-list {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
}

.doc-list h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary);
}

.doc-items {
    display: grid;
    gap: 20px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.doc-item i {
    color: var(--secondary);
    font-size: 24px;
}

.doc-methods {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.doc-method {
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
}

.time-box {
    background: var(--white);
    color: var(--dark);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.time-box h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.time-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin: 20px 0;
}

/* CTA Section */
.cta {
    background: var(--secondary);
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--dark);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    background: var(--dark);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.cta-btn-outline {
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 13px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 30px 20px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #b0b0b0;
}

.footer-col ul li i {
    width: 20px;
    color: var(--secondary);
    margin-right: 10px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b0b0b0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* Process Page */
.process-steps {
    padding: 80px 0;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
}

.note-box {
    background: #fff3e0;
    border-left: 5px solid var(--secondary);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

/* Legal Support Page */
.legal-issues {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.issue-item {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.issue-item i {
    color: var(--secondary);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
    outline: none;
}

.contact-form button {
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.contact-form button:hover {
    background: var(--primary-dark);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-container,
    .about-grid,
    .documents-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}