
/** PDF CONVERTER CUSTOM STYLES **/

.url-converter-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.url-converter-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.url-converter-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.option-box {
    padding: 20px;
    margin: 10px 0;
    transition: transform 0.3s ease;
}

.option-box:hover {
    transform: translateY(-5px);
}

.option-box h5 {
    margin: 15px 0 10px 0;
    color: #333;
    font-weight: 600;
}

.option-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* How to use steps styling */
.how-to-steps {
    margin: 40px 0;
}

.step-box {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #007bff, #28a745);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.step-box h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-box p {
    color: #666;
    line-height: 1.6;
}

/* Advantages section styling */
.advantages-list h4,
.other-tools-list h4 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.advantages-list ul li,
.other-tools-list ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.advantages-list ul li:last-child,
.other-tools-list ul li:last-child {
    border-bottom: none;
}

.advantages-list ul li i {
    margin-right: 15px;
    font-size: 18px;
}

.other-tools-list ul li i {
    margin-right: 15px;
    font-size: 18px;
}

/* Custom services section */
.custom-services-content {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.custom-services-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Features page specific styling */
.feature-list h4 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.feature-list ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-list ul li:hover {
    background: #f8f9fa;
    padding-left: 10px;
    border-radius: 5px;
}

.feature-list ul li:last-child {
    border-bottom: none;
}

.feature-list ul li i {
    margin-right: 15px;
    font-size: 18px;
    min-width: 20px;
}

.feature-list ul li strong {
    color: #333;
    margin-right: 5px;
}

/* Use case boxes styling */
.use-case-box {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.use-case-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.icon-box {
    margin-bottom: 20px;
}

.icon-box i {
    margin-bottom: 15px;
}

.use-case-box h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.use-case-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ section styling */
.faq-content {
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.faq-item h4 i {
    margin-right: 15px;
    font-size: 20px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Pricing table adjustments for 4 columns */
.pricing-table {
    margin-bottom: 30px;
}

.pricing-table-header h3 small {
    font-size: 14px;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

/* Pricing table enhancements */
.pricing-table-highlighted {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-table-highlighted:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Custom button styles */
.btn-converter {
    background: linear-gradient(45deg, #007bff, #28a745);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-converter:hover {
    background: linear-gradient(45deg, #0056b3, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
