/* Home page specific styles */
:root {
    --primary: #4361ee;
    --primary-light: #4895ef;
    --secondary: #3f37c9;
    --light: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --dark: #212529;
    --success: #4cc9f0;
    --error: #f72585;
    --warning: #ff9a00;
    --border-radius: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --animation-duration: 0.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--light-gray);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 2rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    background-color: var(--light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: fadeIn var(--animation-duration) ease-out;
    margin-bottom: 3rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-panel {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    order: 1;
}

.info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-panel h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-panel p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features {
    list-style: none;
    margin-top: 2rem;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features i {
    font-size: 1.2rem;
    color: var(--success);
}

.form-panel {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    order: 2;
}

.success-panel {
    flex: 1;
    padding: 3rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.success-panel.active {
    display: flex;
    animation: slideIn var(--animation-duration) ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success), #38b6db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(76, 201, 240, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-panel h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.success-panel p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 400px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--success), #38b6db);
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 201, 240, 0.4);
}

.reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.reset-btn:hover {
    background: rgba(67, 97, 238, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.1);
}

/* Form elements styling */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo i {
    font-size: 1.8rem;
}

.form-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.file-upload {
    border: 2px dashed var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background-color: var(--light-gray);
}

.file-upload:hover {
    border-color: var(--primary);
    background-color: rgba(67, 97, 238, 0.05);
}

.file-upload i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.file-upload p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    cursor: pointer;
}

.file-name {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.5rem;
    word-break: break-all;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light-gray);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.input-group i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
}

.input-group i:hover {
    color: var(--primary);
}

.password-strength {
    margin-top: 0.5rem;
    height: 4px;
    background-color: var(--medium-gray);
    border-radius: 2px;
    overflow: hidden;
}

.strength-meter {
    height: 100%;
    width: 0%;
    transition: var(--transition);
}

.strength-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--dark-gray);
}

.permissions-group {
    margin-bottom: 1.5rem;
}

.permissions-title {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.permission-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.permission-item input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 1.1em;
    height: 1.1em;
    accent-color: var(--primary);
}

.permission-item label {
    cursor: pointer;
    color: var(--dark);
}

.btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.error-message {
    background-color: rgba(247, 37, 133, 0.1);
    border-left: 4px solid var(--error);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.error-message i {
    color: var(--error);
    font-size: 1.2rem;
}

.error-message p {
    margin: 0;
    color: var(--error);
    font-weight: 500;
}

.note {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin-top: 1.5rem;
    padding: 0.75rem;
    background-color: rgba(108, 117, 125, 0.1);
    border-radius: var(--border-radius);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    
    .info-panel, .form-panel, .success-panel {
        padding: 2rem;
    }
    
    .info-panel {
        order: 2;
    }
    
    .form-panel {
        order: 1;
    }
}

@media (max-width: 768px) {
    .info-panel, .form-panel, .success-panel {
        padding: 1.5rem;
    }
    
    .info-panel h2 {
        font-size: 1.5rem;
    }
    
    .form-panel h3, .success-panel h3 {
        font-size: 1.25rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}



















.error-message {
    background: #ffeeee;
    color: #d32f2f;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #d32f2f;
}

.success-state {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: #2e7d32;
}

.success-message {
    color: #2e7d32;
    font-size: 18px;
    margin-bottom: 25px;
}

.file-info {
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 6px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-info i {
    color: #e74c3c;
    font-size: 20px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.unlock-btn {
    background: #4a6bff;
    color: white;
    width: 100%;
}

.unlock-btn:hover {
    background: #3a5bef;
}

.download-btn {
    background: #2e7d32;
    color: white;
}

.download-btn:hover {
    background: #1b5e20;
}

.unlock-more-btn {
    background: #f8f9fa;
    color: #2c3e50;
    border: 1px solid #ddd;
}

.unlock-more-btn:hover {
    background: #e9ecef;
}


.security-note i, .form-note i {
    color: #4a6bff;
}

.file-upload {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
}

.file-upload.highlight {
    border-color: #4a6bff;
    background: rgba(74, 107, 255, 0.05);
}

.file-upload.has-file {
    padding-bottom: 50px;
}

.upload-icon {
    font-size: 40px;
    color: #4a6bff;
    margin-bottom: 10px;
}

.upload-text {
    font-weight: 500;
    margin: 0;
    color: #2c3e50;
}

.upload-subtext {
    font-size: 14px;
    color: #7f8c8d;
    margin: 5px 0 0;
}

.file-name {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    padding: 0 15px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.password-wrapper input:focus {
    border-color: #4a6bff;
    outline: none;
}

.password-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}

.blog-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 3rem;
    background-color: var(--light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.blog-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.blog-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    font-size: 0.9rem;
}

.featured-image {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 300px;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    padding: 0.75rem 1rem;
    background-color: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.85rem;
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 2rem 0;
    color: var(--dark);
    font-weight: 500;
}

.content-block {
    margin: 3rem 0;
}

.content-block h3 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-block h3 i {
    font-size: 1.5rem;
}

.info-card {
    background-color: rgba(67, 97, 238, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -2rem;
    width: 2px;
    background-color: var(--medium-gray);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.note-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    align-items: flex-start;
}

.note-tip {
    background-color: rgba(76, 201, 240, 0.1);
    border-left: 4px solid var(--success);
}

.note-icon {
    font-size: 1.5rem;
    color: var(--success);
    margin-top: 0.25rem;
}

.note-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.case-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: -1;
}

.case-law {
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
}

.case-finance {
    background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80') center/cover;
}

.case-health {
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
}

.case-education {
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
}

.case-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.conclusion {
    margin-top: 4rem;
    text-align: center;
}

.quote {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    position: relative;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--dark);
}

.quote i:first-child {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    opacity: 0.1;
    color: var(--primary);
}

.quote i:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 3rem;
    opacity: 0.1;
    color: var(--primary);
}

.quote-author {
    font-style: normal;
    font-weight: bold;
    margin-top: 1rem;
    color: var(--primary);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: white;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 20s linear infinite;
}

.cta-box > * {
    position: relative;
    z-index: 2;
}

.cta-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blog-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag {
    background-color: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.author-bio {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-header h2 {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 1.5rem;
    }
    
    .feature-grid, .use-cases {
        grid-template-columns: 1fr;
    }
    
    .quote {
        font-size: 1.1rem;
        padding: 1rem;
    }
}