/* Main Container Styles */
.misc-tools-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    background-color: #ffffff;
}

/* Hero Section Styles */
.misc-hero-section {
    position: relative;
    padding: 60px 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
    color: white;
    overflow: hidden;
    text-align: center;
}

.misc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.misc-main-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.misc-hero-text {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.misc-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.misc-shape-1, .misc-shape-2, .misc-shape-3 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.misc-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.misc-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.misc-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
}

/* Tools Grid Styles */
.misc-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.misc-tool-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    text-align: center;
}

.misc-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #4a6cf7;
}

.misc-tool-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
    border-radius: 50%;
    color: white;
}

.misc-tool-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.misc-tool-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.misc-tool-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.misc-tool-link {
    display: inline-block;
    padding: 10px 20px;
    background: #4a6cf7;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.misc-tool-link:hover {
    background: #3a5ce4;
    transform: translateY(-2px);
}

/* Info Boxes Styles */
.misc-info-section {
    margin-bottom: 60px;
}

.misc-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.misc-info-box {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #eaeaea;
}

.misc-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.misc-info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.misc-info-icon svg {
    width: 24px;
    height: 24px;
}

.misc-box-1 .misc-info-icon {
    background: rgba(74, 108, 247, 0.1);
}

.misc-box-1 .misc-info-icon svg {
    fill: #4a6cf7;
}

.misc-box-2 .misc-info-icon {
    background: rgba(46, 204, 113, 0.1);
}

.misc-box-2 .misc-info-icon svg {
    fill: #2ecc71;
}

.misc-box-3 .misc-info-icon {
    background: rgba(155, 89, 182, 0.1);
}

.misc-box-3 .misc-info-icon svg {
    fill: #9b59b6;
}

.misc-info-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.misc-info-text {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Content Section Styles */
.misc-content-section {
    position: relative;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.misc-content-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    border-top-right-radius: 12px;
}

.misc-content-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.misc-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #6e8efb, #4a6cf7);
}

.misc-content-text {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.misc-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.misc-feature-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.misc-feature-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.misc-feature-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4a6cf7;
    margin-bottom: 10px;
}

.misc-feature-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.misc-feature-desc {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.misc-related-tool {
    padding: 20px;
    background: #f5f8ff;
    border-radius: 8px;
    border-left: 4px solid #4a6cf7;
}

.misc-related-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.misc-related-text {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.misc-related-link {
    color: #4a6cf7;
    font-weight: 600;
    text-decoration: none;
}

.misc-related-link:hover {
    text-decoration: underline;
}

/* FAQ Section Styles */
.misc-faq-section {
    margin-bottom: 60px;
}

.misc-faq-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
    position: relative;
}

.misc-faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #6e8efb, #4a6cf7);
}

.misc-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.misc-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.misc-faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.misc-faq-question:hover {
    background: #f9f9f9;
}

.misc-faq-icon {
    font-size: 1.2rem;
    color: #4a6cf7;
    transition: transform 0.3s ease;
}

.misc-faq-question.active .misc-faq-icon {
    transform: rotate(45deg);
}

.misc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.misc-faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .misc-main-title {
        font-size: 2.2rem;
    }
    
    .misc-hero-text {
        font-size: 1rem;
    }
    
    .misc-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .misc-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .misc-content-section {
        padding: 30px 20px;
    }
    
    .misc-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .misc-main-title {
        font-size: 1.8rem;
    }
    
    .misc-hero-section {
        padding: 40px 20px;
    }
    
    .misc-content-title, .misc-faq-title {
        font-size: 1.5rem;
    }
}