/* Enhanced Custom Styles Beyond Tailwind */

/* Smooth scrolling and base styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #0F172A;
    color: #E2E8F0;
    line-height: 1.6;
    letter-spacing: 0.01em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dark body {
    background: #0F172A;
    color: #E2E8F0;
}

/* Container styles */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 100%;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

/* Section styles */
section {
    width: 100%;
    overflow: hidden;
    padding: 4rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent,
        rgba(77, 127, 255, 0.2),
        transparent
    );
}

/* Remove section dividers */
section:not(:last-child)::after {
    display: none;
}

/* Modern glass morphism effect for cards */
.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(77, 127, 255, 0.1);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(77, 127, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
}

.dark .glass-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(77, 127, 255, 0.2);
    box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.5),
        0 0 0 1px rgba(77, 127, 255, 0.1);
}

/* Profile Image Enhancement */
.profile-container {
    position: relative;
    width: 400px !important;
    height: 400px !important;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(77, 127, 255, 0.3),
        0 0 100px rgba(124, 77, 255, 0.2);
}

@media (min-width: 1024px) {
    .profile-container {
        width: 450px !important;
        height: 450px !important;
        margin: 0 auto;
    }
}

.profile-image {
    border-width: 4px !important;
    border-color: rgba(77, 127, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .profile-image {
    border-color: rgba(77, 127, 255, 0.2) !important;
    box-shadow: 
        0 0 60px rgba(77, 127, 255, 0.3),
        0 0 100px rgba(124, 77, 255, 0.2);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 80px rgba(77, 127, 255, 0.4),
        0 0 120px rgba(124, 77, 255, 0.3);
}

/* Enhanced card styles */
.card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(77, 127, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
}

.dark .card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(77, 127, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(77, 127, 255, 0.15);
}

/* Button enhancements */
.button-primary {
    background: linear-gradient(135deg, #4D7FFF, #7C4DFF);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(77, 127, 255, 0.2);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(77, 127, 255, 0.3);
}

.button-secondary {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(77, 127, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .button-secondary {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
}

.button-secondary:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-3px);
    border-color: rgba(77, 127, 255, 0.2);
}

/* Tech stack badges */
.tech-badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
    color: #E2E8F0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .tech-badge {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
    color: #E2E8F0;
}

.tech-badge:hover {
    transform: translateY(-3px);
    background: rgba(77, 127, 255, 0.1);
    border-color: rgba(77, 127, 255, 0.2);
    box-shadow: 0 4px 12px rgba(77, 127, 255, 0.2);
}

/* Project cards enhancement */
.project-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(77, 127, 255, 0.1);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
}

.dark .project-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(77, 127, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(77, 127, 255, 0.15);
}

.project-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Timeline enhancement */
.timeline-dot {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4D7FFF, #7C4DFF);
    border: 2px solid rgba(77, 127, 255, 0.1);
    box-shadow: 0 0 20px rgba(77, 127, 255, 0.3);
}

.timeline-line {
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(77, 127, 255, 0.2),
        rgba(124, 77, 255, 0.2)
    );
    box-shadow: 0 0 10px rgba(77, 127, 255, 0.1);
}

/* Contact Section Layout Enhancement */
.contact-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom right, 
        rgba(15, 23, 42, 0.95),
        rgba(30, 41, 59, 0.95)
    );
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(77, 127, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 77, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #4D7FFF, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #94A3B8;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.dark .contact-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #4D7FFF, #7C4DFF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(77, 127, 255, 0.15);
    border-color: rgba(77, 127, 255, 0.2);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(77, 127, 255, 0.2), rgba(124, 77, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(77, 127, 255, 0.3), rgba(124, 77, 255, 0.3));
}

.contact-details {
    flex: 1;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.contact-card-text {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: #4D7FFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: #7C4DFF;
    transform: translateX(5px);
}

.contact-link svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.contact-link:hover svg {
    transform: translateX(3px);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dark .contact-form-container {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #4D7FFF, #7C4DFF);
}

.contact-form-container:hover {
    border-color: rgba(77, 127, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(77, 127, 255, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #1E293B;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 0.75rem;
    color: #1E293B;
    transition: all 0.3s ease;
}

.dark .form-input,
.dark .form-textarea {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
    color: #E2E8F0;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(77, 127, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(77, 127, 255, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, #4D7FFF, #7C4DFF);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 127, 255, 0.3);
}

.submit-button svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E293B;
    transition: all 0.3s ease;
}

.dark .social-link {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(77, 127, 255, 0.1);
    border-color: rgba(77, 127, 255, 0.2);
    color: #4D7FFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Mobile responsiveness */
@media (max-width: 1023px) {
    .profile-container {
        width: 320px !important;
        height: 320px !important;
        margin: 2rem auto 0;
    }
}

@media (max-width: 640px) {
    .profile-container {
        width: 280px !important;
        height: 280px !important;
        margin: 2rem auto 0;
    }
}

/* Dark mode specific enhancements */
.dark {
    color-scheme: dark;
}

.dark .glass-card,
.dark .card,
.dark .project-card {
    background: rgba(17, 24, 39, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark .button-secondary {
    background: rgba(17, 24, 39, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark .tech-badge {
    background: rgba(17, 24, 39, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark .contact-item {
    background: rgba(17, 24, 39, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark .timeline-dot {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark .timeline-line {
    background: linear-gradient(to bottom, 
        rgba(59, 130, 246, 0.3),
        rgba(139, 92, 246, 0.3)
    );
}

/* Animations */
@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.animate-wave {
    animation: wave 1.5s infinite;
    transform-origin: bottom center;
    display: inline-block;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive text */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem !important;
    }
    .text-xl {
        font-size: 1.1rem !important;
    }
    .text-lg {
        font-size: 1rem !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Tech Stack Section Styles */
.tech-stack-container {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.tech-stack-scroll {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.tech-stack-scroll:active {
    cursor: grabbing;
}

.tech-stack-scroll::-webkit-scrollbar {
    display: none;
}

.tech-stack-card {
    flex: 0 0 320px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(77, 127, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #E2E8F0;
}

.dark .tech-stack-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
    color: #E2E8F0;
}

.tech-stack-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(77, 127, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(77, 127, 255, 0.15);
}

.tech-stack-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(77, 127, 255, 0.2), rgba(124, 77, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tech-stack-icon img {
    filter: brightness(0) invert(1);
}

.tech-stack-badge {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
    color: #E2E8F0;
}

.dark .tech-stack-badge {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(77, 127, 255, 0.1);
    color: #E2E8F0;
}

.tech-stack-badge:hover {
    background: rgba(77, 127, 255, 0.1);
    border-color: rgba(77, 127, 255, 0.2);
    transform: translateX(5px);
}

.tech-stack-badge-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    object-fit: contain;
    margin-right: 0.75rem;
}

.tech-stack-level {
    color: #94A3B8;
    background: rgba(30, 41, 59, 0.7);
}

.dark .tech-stack-level {
    color: #94A3B8;
    background: rgba(30, 41, 59, 0.7);
}

.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(77, 127, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-indicator:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(77, 127, 255, 0.2);
    border-color: rgba(77, 127, 255, 0.4);
    box-shadow: 0 8px 24px rgba(77, 127, 255, 0.2);
}

.scroll-indicator-left {
    left: 1rem;
}

.scroll-indicator-right {
    right: 1rem;
}

.scroll-indicator svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

/* Enhanced Contact Items */
.contact-item {
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(77, 127, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #E2E8F0;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(77, 127, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid rgba(77, 127, 255, 0.5);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Error States */
.error {
    border-color: rgba(239, 68, 68, 0.5) !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.tech-stack-card .w-12 {
    width: 4rem !important;
    height: 4rem !important;
}

.tech-stack-card .w-6 {
    width: 2rem !important;
    height: 2rem !important;
}

/* Work Experience Section Icons */
#work-experience .w-12 {
    width: 4rem !important;
    height: 4rem !important;
}

#work-experience .w-6 {
    width: 2.5rem !important;
    height: 2.5rem !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Heading Styles */
h1 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-weight: 600;
    line-height: 1.4;
}

/* Enhanced text styles */
.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
}

.button-primary, .button-secondary {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.tech-stack-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
}

.tech-stack-level {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
}

.project-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Quote styling */
blockquote {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}
