/* Main Container Styles */
.remove-line-breaks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Hero Section Styles */
.remove-line-breaks-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.remove-line-breaks-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.remove-line-breaks-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Tool Section Styles */
.remove-line-breaks-tool {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.remove-line-breaks-input-container,
.remove-line-breaks-output-container {
    display: flex;
    flex-direction: column;
}

.remove-line-breaks-label {
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #444;
}

.remove-line-breaks-textarea {
    flex-grow: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    resize: none;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color 0.3s;
    margin-bottom: 1rem;
    background-color: #f9f9f9;
}

.remove-line-breaks-textarea:focus {
    border-color: #6e8efb;
    outline: none;
    background-color: white;
}

.remove-line-breaks-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.remove-line-breaks-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.remove-line-breaks-option input {
    cursor: pointer;
}

.remove-line-breaks-button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.remove-line-breaks-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.remove-line-breaks-button:active {
    transform: translateY(0);
}

.remove-line-breaks-output-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.remove-line-breaks-action-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #f0f0f0;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.remove-line-breaks-action-button:hover {
    background: #e0e0e0;
}

/* Info Boxes Styles */
.remove-line-breaks-info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.remove-line-breaks-info-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.remove-line-breaks-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.remove-line-breaks-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.1) 0%, rgba(167, 119, 227, 0.1) 100%);
    border-radius: 50%;
    color: #6e8efb;
}

.remove-line-breaks-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #444;
}

.remove-line-breaks-info-box p {
    color: #666;
    line-height: 1.6;
}

/* Content Section Styles */
.remove-line-breaks-content {
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.remove-line-breaks-content-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #444;
    text-align: center;
}

.remove-line-breaks-content-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.remove-line-breaks-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.remove-line-breaks-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.1) 0%, rgba(167, 119, 227, 0.1) 100%);
    border-radius: 12px;
    color: #6e8efb;
}

.remove-line-breaks-feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.remove-line-breaks-feature-text p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section Styles */
.remove-line-breaks-faq {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.remove-line-breaks-faq-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #444;
    text-align: center;
}

.remove-line-breaks-faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.remove-line-breaks-faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #444;
    cursor: pointer;
    transition: background 0.2s;
}

.remove-line-breaks-faq-question:hover {
    background: #f0f0f0;
}

.remove-line-breaks-faq-question svg {
    transition: transform 0.3s;
}

.remove-line-breaks-faq-item.active .remove-line-breaks-faq-question svg {
    transform: rotate(180deg);
}

.remove-line-breaks-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.remove-line-breaks-faq-item.active .remove-line-breaks-faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 500px;
}

.remove-line-breaks-faq-answer p {
    color: #666;
    line-height: 1.6;
}

.remove-line-breaks-internal-link {
    color: #6e8efb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.remove-line-breaks-internal-link:hover {
    color: #a777e3;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .remove-line-breaks-tool {
        grid-template-columns: 1fr;
    }
    
    .remove-line-breaks-info-boxes {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .remove-line-breaks-title {
        font-size: 2rem;
    }
    
    .remove-line-breaks-subtitle {
        font-size: 1rem;
    }
    
    .remove-line-breaks-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .remove-line-breaks-feature {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .remove-line-breaks-container {
        padding: 1.5rem 1rem;
    }
    
    .remove-line-breaks-hero {
        padding: 1.5rem 0;
    }
    
    .remove-line-breaks-title {
        font-size: 1.8rem;
    }
    
    .remove-line-breaks-tool {
        padding: 1.5rem;
    }
    
    .remove-line-breaks-content,
    .remove-line-breaks-faq {
        padding: 1.5rem;
    }
    
    .remove-line-breaks-output-actions {
        flex-direction: column;
    }
    
    .remove-line-breaks-action-button {
        justify-content: center;
    }
}