/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.btn-success {
    background-color: #16a34a;
    color: white;
}

.btn-success:hover {
    background-color: #15803d;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-red {
    color: #dc2626;
}

.icon-green {
    color: #16a34a;
}

.icon-blue {
    color: #2563eb;
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1f2937;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #eff6ff, white);
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-features {
    display: grid;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-image {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    background: #fef2f2;
    padding: 0.5rem;
    border-radius: 50%;
    color: #dc2626;
}

.stat-number {
    font-weight: 600;
    color: #1f2937;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.risks-section,
.benefits-section {
    margin-bottom: 4rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.risk-title {
    color: #dc2626;
}

.benefit-title {
    color: #16a34a;
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.risk-card {
    border: 1px solid #fecaca;
    background-color: #fef2f2;
}

.benefit-card {
    border: 1px solid #bbf7d0;
    background-color: #f0fdf4;
}

.card-header {
    text-align: center;
    padding: 1.5rem 1rem 1rem;
}

.card-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
}

.risk-card .card-icon {
    color: #dc2626;
}

.benefit-card .card-icon {
    color: #16a34a;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}

.risk-card .card-title {
    color: #991b1b;
}

.benefit-card .card-title {
    color: #166534;
}

.card-content {
    padding: 0 1rem 1.5rem;
}

.card-content p {
    text-align: center;
    margin: 0;
}

.risk-card .card-content p {
    color: #991b1b;
}

.benefit-card .card-content p {
    color: #166534;
}

/* Attorney Section */
.attorney-section {
    padding: 5rem 0;
    background-color: white;
}

.attorney-content {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .attorney-content {
        grid-template-columns: 1fr 1fr;
    }
}

.attorney-profile {
    border: 2px solid #dbeafe;
}

.attorney-header {
    text-align: center;
    padding: 1.5rem;
}

.attorney-photo {
    width: 14.3rem;
    height: 14.3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.attorney-name {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.attorney-firm {
    color: #2563eb;
    font-weight: 500;
    margin: 0;
}

.attorney-credentials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.credential .icon {
    color: #2563eb;
}

.attorney-description {
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
}

.specialties {
    margin-bottom: 1.5rem;
}

.specialties h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.consultation-note {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin: 0.75rem 0 0;
}

.attorney-info h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    background-color: #dbeafe;
    padding: 0.5rem;
    border-radius: 50%;
    color: #2563eb;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #6b7280;
    margin: 0;
}

.protection-plan {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.protection-plan h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.plan-list {
    list-style: none;
    padding: 0;
}

.plan-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.plan-list li:before {
    content: "•";
    color: #2563eb;
    font-size: 1.25rem;
}

/* Credit Section */
.credit-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.credit-content {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .credit-content {
        grid-template-columns: 1fr 1fr;
    }
}

.credit-profile {
    border: 2px solid #bbf7d0;
}

.credit-header {
    text-align: center;
    padding: 1.5rem;
}

.credit-icon {
    width: 6rem;
    height: 6rem;
    background-color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #16a34a;
}

.credit-icon .icon {
    width: 3rem;
    height: 3rem;
}

.credit-name {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.credit-description {
    color: #16a34a;
    font-weight: 500;
    margin: 0;
}

.service-description {
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
}

.services {
    margin-bottom: 1.5rem;
}

.services h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
}

.check-icon {
    width: 0.75rem;
    height: 0.75rem;
    color: #16a34a;
}

.credit-benefits h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.credit-benefits-list {
    margin-bottom: 2rem;
}

.credit-benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credit-benefit-item .benefit-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.process-steps {
    background-color: #eff6ff;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.process-steps h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.step-number {
    background-color: #2563eb;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-content {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    background-color: #dbeafe;
    padding: 0.5rem;
    border-radius: 50%;
    color: #2563eb;
    flex-shrink: 0;
}

.info-text h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: #6b7280;
    margin: 0;
}

.warning-box {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    padding: 1rem;
    border-radius: 0.5rem;
}

.warning-box h4 {
    font-weight: 600;
    color: #991b1b;
    margin-bottom: 0.5rem;
}

.warning-box p {
    color: #991b1b;
    margin: 0;
}

.form-header {
    text-align: center;
    padding: 1.5rem 1.5rem 0;
}

.form-header h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
    margin: 0;
}

.contact-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-direct {
    text-align: center;
    margin-top: 1rem;
}

.contact-direct p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-methods {
        flex-direction: row;
        justify-content: center;
    }
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-method .icon {
    color: #2563eb;
}

.contact-methods .btn {
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.privacy-notice {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    color: #60a5fa;
}

.footer-logo span {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-specialty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-specialty .icon {
    width: 1rem;
    height: 1rem;
}

.footer-section h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-list li {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-attorney {
    font-size: 0.875rem;
    color: #9ca3af;
}

.attorney-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.attorney-name .icon {
    width: 1rem;
    height: 1rem;
}

.footer-attorney p {
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-credit p {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #60a5fa;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #93c5fd;
}

.footer-link .icon {
    width: 0.75rem;
    height: 0.75rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.legal-disclaimer {
    margin-top: 1.5rem;
    text-align: center;
}

.legal-disclaimer p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}