.writing-animation-section {
    padding: 60px 20px;
    background-color: #FDFAF5;
    font-family: 'Roboto', sans-serif;
}

.writing-animation-container {
    max_width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C3B2D;
    text-align: left;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #2E2A25;
    line-height: 1.6;
    max-width: 800px;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for better readability */
    gap: 25px 40px;
}

.list-item {
    font-size: 1rem;
    line-height: 1.5;
    color: #2E2A25;
    position: relative;
    padding-left: 25px;
}

.list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px; /* Align with first line of text */
    width: 12px;
    height: 3px; /* Dash shape */
    background-color: #E2725B; /* Terracotta accent */
    border-radius: 1px;
}

.cta-wrapper {
    margin-top: 20px;
}

.cta-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E2725B;
    text-decoration: none;
    border-bottom: 2px solid #E2725B; /* Underline style */
    padding-bottom: 2px;
    transition: all 0.2s ease;
    display: inline-block;
}

.cta-link:hover {
    color: #C05845; /* Darker terracotta */
    border-bottom-color: transparent;
}

/* Tablet */
@media (max-width: 1024px) {
    .styled-list {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .writing-animation-section {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
