/* File Hash Checker Tool Styles - Scoped to prevent header/footer conflicts */
    .hash-tool-wrapper {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        min-height: 100vh;
        padding: 30px 0;
    }
    
    .hash-tool-wrapper * {
        box-sizing: border-box;
    }
    
    .hash-tool-wrapper .tool-hero-section {
        background: linear-gradient(135deg, #146c43 0%, #0d503a 50%, #094330 100%);
        border-radius: 20px;
        padding: 50px 40px;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(20, 108, 67, 0.3);
    }
    
    .hash-tool-wrapper .tool-hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(255,189,41,0.15) 0%, transparent 70%);
        pointer-events: none;
    }
    
    .hash-tool-wrapper .tool-hero-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 50%;
        height: 150%;
        background: radial-gradient(ellipse, rgba(254,1,94,0.1) 0%, transparent 70%);
        pointer-events: none;
    }
    
    .hash-tool-wrapper .hero-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2.8rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }
    
    .hash-tool-wrapper .hero-title span {
        color: #ffbd29;
    }
    
    .hash-tool-wrapper .hero-subtitle {
        font-size: 1.15rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
        line-height: 1.7;
    }
    
    .hash-tool-wrapper .rating-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        padding: 12px 24px;
        border-radius: 50px;
        position: relative;
        z-index: 1;
    }
    
    .hash-tool-wrapper .rating-badge .stars {
        color: #ffbd29;
        font-size: 1.1rem;
    }
    
    .hash-tool-wrapper .rating-badge .rating-text {
        color: #ffffff;
        font-weight: 600;
        font-size: 0.95rem;
    }
    
    .hash-tool-wrapper .main-tool-card {
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        padding: 40px;
        margin-bottom: 30px;
        border: 1px solid rgba(20,108,67,0.1);
    }
    
    .hash-tool-wrapper .algorithm-selector {
        margin-bottom: 30px;
    }
    
    .hash-tool-wrapper .algorithm-selector label {
        font-weight: 600;
        color: #146c43;
        margin-bottom: 12px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .hash-tool-wrapper .algorithm-selector label i {
        color: #fe015e;
    }
    
    .hash-tool-wrapper .algorithm-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hash-tool-wrapper .algo-btn {
        padding: 12px 28px;
        border: 2px solid #e9ecef;
        background: #ffffff;
        border-radius: 10px;
        font-weight: 600;
        color: #495057;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }
    
    .hash-tool-wrapper .algo-btn:hover {
        border-color: #146c43;
        color: #146c43;
        transform: translateY(-2px);
    }
    
    .hash-tool-wrapper .algo-btn.active {
        background: linear-gradient(135deg, #146c43 0%, #0d503a 100%);
        border-color: #146c43;
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(20,108,67,0.3);
    }
    
    .hash-tool-wrapper .upload-zone {
        border: 3px dashed #dee2e6;
        border-radius: 20px;
        padding: 60px 40px;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hash-tool-wrapper .upload-zone::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(20,108,67,0.05) 0%, rgba(254,1,94,0.02) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .hash-tool-wrapper .upload-zone:hover,
    .hash-tool-wrapper .upload-zone.dragover {
        border-color: #146c43;
        background: linear-gradient(135deg, rgba(20,108,67,0.05) 0%, #ffffff 100%);
        transform: scale(1.01);
    }
    
    .hash-tool-wrapper .upload-zone:hover::before,
    .hash-tool-wrapper .upload-zone.dragover::before {
        opacity: 1;
    }
    
    .hash-tool-wrapper .upload-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #146c43 0%, #0d503a 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        box-shadow: 0 10px 30px rgba(20,108,67,0.3);
    }
    
    .hash-tool-wrapper .upload-icon i {
        font-size: 2.5rem;
        color: #ffffff;
    }
    
    .hash-tool-wrapper .upload-text {
        font-size: 1.3rem;
        font-weight: 600;
        color: #343a40;
        margin-bottom: 10px;
    }
    
    .hash-tool-wrapper .upload-subtext {
        color: #6c757d;
        font-size: 1rem;
    }
    
    .hash-tool-wrapper .upload-subtext span {
        color: #fe015e;
        font-weight: 600;
    }
    
    .hash-tool-wrapper .file-info-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 15px;
        padding: 25px;
        margin-top: 25px;
        border: 1px solid #e9ecef;
        display: none;
    }
    
    .hash-tool-wrapper .file-info-card.show {
        display: block;
        animation: fadeInUp 0.4s ease;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hash-tool-wrapper .file-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #ffbd29 0%, #f5a623 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(255,189,41,0.3);
    }
    
    .hash-tool-wrapper .file-icon i {
        font-size: 1.8rem;
        color: #ffffff;
    }
    
    .hash-tool-wrapper .file-details h5 {
        font-weight: 700;
        color: #343a40;
        margin-bottom: 5px;
        word-break: break-all;
    }
    
    .hash-tool-wrapper .file-details p {
        color: #6c757d;
        margin: 0;
        font-size: 0.95rem;
    }
    
    .hash-tool-wrapper .remove-file-btn {
        background: linear-gradient(135deg, #fe015e 0%, #d4014f 100%);
        border: none;
        color: #ffffff;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(254,1,94,0.3);
    }
    
    .hash-tool-wrapper .remove-file-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(254,1,94,0.4);
    }
    
    .hash-tool-wrapper .progress-section {
        margin-top: 25px;
        display: none;
    }
    
    .hash-tool-wrapper .progress-section.show {
        display: block;
    }
    
    .hash-tool-wrapper .progress {
        height: 12px;
        border-radius: 10px;
        background: #e9ecef;
        overflow: hidden;
    }
    
    .hash-tool-wrapper .progress-bar {
        background: linear-gradient(90deg, #146c43 0%, #ffbd29 50%, #fe015e 100%);
        background-size: 200% 100%;
        animation: progressGradient 2s linear infinite;
        border-radius: 10px;
    }
    
    @keyframes progressGradient {
        0% { background-position: 0% 50%; }
        100% { background-position: 200% 50%; }
    }
    
    .hash-tool-wrapper .progress-text {
        text-align: center;
        margin-top: 10px;
        font-weight: 600;
        color: #146c43;
    }
    
    .hash-tool-wrapper .result-section {
        margin-top: 30px;
        display: none;
    }
    
    .hash-tool-wrapper .result-section.show {
        display: block;
        animation: fadeInUp 0.5s ease;
    }
    
    .hash-tool-wrapper .result-card {
        background: linear-gradient(135deg, #146c43 0%, #0d503a 100%);
        border-radius: 20px;
        padding: 30px;
        color: #ffffff;
        box-shadow: 0 15px 40px rgba(20,108,67,0.25);
    }
    
    .hash-tool-wrapper .result-card h4 {
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .hash-tool-wrapper .result-card h4 i {
        color: #ffbd29;
    }
    
    .hash-tool-wrapper .hash-output {
        background: rgba(255,255,255,0.15);
        border-radius: 12px;
        padding: 20px;
        font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
        font-size: 0.9rem;
        word-break: break-all;
        margin-bottom: 20px;
        border: 1px solid rgba(255,255,255,0.2);
        backdrop-filter: blur(5px);
    }
    
    .hash-tool-wrapper .hash-output-text {
        user-select: all;
        line-height: 1.8;
    }
    
    .hash-tool-wrapper .action-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hash-tool-wrapper .action-btn {
        padding: 12px 24px;
        border-radius: 10px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 0.95rem;
    }
    
    .hash-tool-wrapper .btn-copy {
        background: #ffbd29;
        color: #343a40;
    }
    
    .hash-tool-wrapper .btn-copy:hover {
        background: #f5a623;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255,189,41,0.4);
    }
    
    .hash-tool-wrapper .btn-download {
        background: rgba(255,255,255,0.2);
        color: #ffffff;
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    .hash-tool-wrapper .btn-download:hover {
        background: rgba(255,255,255,0.3);
        transform: translateY(-2px);
    }
    
    .hash-tool-wrapper .btn-compare {
        background: #fe015e;
        color: #ffffff;
    }
    
    .hash-tool-wrapper .btn-compare:hover {
        background: #d4014f;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(254,1,94,0.4);
    }
    
    .hash-tool-wrapper .compare-section {
        margin-top: 25px;
        display: none;
    }
    
    .hash-tool-wrapper .compare-section.show {
        display: block;
        animation: fadeInUp 0.4s ease;
    }
    
    .hash-tool-wrapper .compare-input {
        background: rgba(255,255,255,0.15);
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 12px;
        padding: 15px 20px;
        color: #ffffff;
        width: 100%;
        font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .hash-tool-wrapper .compare-input::placeholder {
        color: rgba(255,255,255,0.6);
    }
    
    .hash-tool-wrapper .compare-input:focus {
        outline: none;
        border-color: #ffbd29;
        background: rgba(255,255,255,0.2);
    }
    
    .hash-tool-wrapper .compare-result {
        margin-top: 15px;
        padding: 15px 20px;
        border-radius: 12px;
        font-weight: 600;
        display: none;
    }
    
    .hash-tool-wrapper .compare-result.show {
        display: flex;
        align-items: center;
        gap: 10px;
        animation: fadeInUp 0.3s ease;
    }
    
    .hash-tool-wrapper .compare-result.match {
        background: rgba(25,135,84,0.3);
        border: 1px solid rgba(25,135,84,0.5);
    }
    
    .hash-tool-wrapper .compare-result.mismatch {
        background: rgba(220,53,69,0.3);
        border: 1px solid rgba(220,53,69,0.5);
    }
    
    .hash-tool-wrapper .all-hashes-section {
        margin-top: 30px;
    }
    
    .hash-tool-wrapper .hash-item {
        background: #ffffff;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 15px;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
    }
    
    .hash-tool-wrapper .hash-item:hover {
        box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }
    
    .hash-tool-wrapper .hash-item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    
    .hash-tool-wrapper .hash-type-badge {
        background: linear-gradient(135deg, #146c43 0%, #0d503a 100%);
        color: #ffffff;
        padding: 6px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.85rem;
    }
    
    .hash-tool-wrapper .copy-small-btn {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        color: #495057;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .hash-tool-wrapper .copy-small-btn:hover {
        background: #146c43;
        color: #ffffff;
        border-color: #146c43;
    }
    
    .hash-tool-wrapper .hash-value {
        font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
        font-size: 0.85rem;
        color: #495057;
        word-break: break-all;
        background: #f8f9fa;
        padding: 12px 15px;
        border-radius: 8px;
        user-select: all;
    }
    
    .hash-tool-wrapper .ad-container {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border: 2px dashed #dee2e6;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .hash-tool-wrapper .ad-placeholder {
        color: #adb5bd;
        font-size: 0.95rem;
    }
    
    .hash-tool-wrapper .features-section {
        margin-top: 40px;
    }
    
    .hash-tool-wrapper .feature-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 35px 30px;
        text-align: center;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .hash-tool-wrapper .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    
    .hash-tool-wrapper .feature-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2rem;
    }
    
    .hash-tool-wrapper .feature-icon.green {
        background: linear-gradient(135deg, rgba(20,108,67,0.15) 0%, rgba(20,108,67,0.05) 100%);
        color: #146c43;
    }
    
    .hash-tool-wrapper .feature-icon.pink {
        background: linear-gradient(135deg, rgba(254,1,94,0.15) 0%, rgba(254,1,94,0.05) 100%);
        color: #fe015e;
    }
    
    .hash-tool-wrapper .feature-icon.yellow {
        background: linear-gradient(135deg, rgba(255,189,41,0.25) 0%, rgba(255,189,41,0.1) 100%);
        color: #d49b00;
    }
    
    .hash-tool-wrapper .feature-card h4 {
        font-weight: 700;
        color: #343a40;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .hash-tool-wrapper .feature-card p {
        color: #6c757d;
        line-height: 1.7;
        font-size: 0.95rem;
    }
    
    .hash-tool-wrapper .content-section {
        background: #ffffff;
        border-radius: 20px;
        padding: 50px;
        margin-top: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }
    
    .hash-tool-wrapper .content-section h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: #146c43;
        margin-bottom: 25px;
        font-size: 1.8rem;
    }
    
    .hash-tool-wrapper .content-section h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        color: #343a40;
        margin: 30px 0 15px;
        font-size: 1.4rem;
    }
    
    .hash-tool-wrapper .content-section h4 {
        font-weight: 600;
        color: #495057;
        margin: 25px 0 12px;
        font-size: 1.15rem;
    }
    
    .hash-tool-wrapper .content-section p {
        color: #495057;
        line-height: 1.8;
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hash-tool-wrapper .content-section ul {
        padding-left: 25px;
        margin-bottom: 20px;
    }
    
    .hash-tool-wrapper .content-section ul li {
        color: #495057;
        margin-bottom: 12px;
        line-height: 1.7;
    }
    
    .hash-tool-wrapper .content-section ul li strong {
        color: #146c43;
    }
    
    .hash-tool-wrapper .highlight-box {
        background: linear-gradient(135deg, rgba(20,108,67,0.08) 0%, rgba(255,189,41,0.05) 100%);
        border-left: 4px solid #146c43;
        padding: 25px 30px;
        border-radius: 0 15px 15px 0;
        margin: 25px 0;
    }
    
    .hash-tool-wrapper .highlight-box p {
        margin: 0;
        font-weight: 500;
    }
    
    .hash-tool-wrapper .faq-section {
        margin-top: 40px;
    }
    
    .hash-tool-wrapper .faq-section h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: #146c43;
        text-align: center;
        margin-bottom: 35px;
    }
    
    .hash-tool-wrapper .accordion-item {
        border: 1px solid #e9ecef;
        border-radius: 15px !important;
        margin-bottom: 15px;
        overflow: hidden;
    }
    
    .hash-tool-wrapper .accordion-button {
        font-weight: 600;
        color: #343a40;
        padding: 20px 25px;
        background: #ffffff;
    }
    
    .hash-tool-wrapper .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, rgba(20,108,67,0.05) 0%, #ffffff 100%);
        color: #146c43;
    }
    
    .hash-tool-wrapper .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(20,108,67,0.25);
    }
    
    .hash-tool-wrapper .accordion-body {
        padding: 20px 25px 25px;
        color: #495057;
        line-height: 1.8;
    }
    
    .hash-tool-wrapper .related-tools {
        margin-top: 40px;
    }
    
    .hash-tool-wrapper .related-tools h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: #343a40;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .hash-tool-wrapper .related-tool-card {
        background: #ffffff;
        border-radius: 15px;
        padding: 25px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        height: 100%;
        text-decoration: none;
        display: block;
    }
    
    .hash-tool-wrapper .related-tool-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: #146c43;
    }
    
    .hash-tool-wrapper .related-tool-card i {
        font-size: 2.5rem;
        color: #146c43;
        margin-bottom: 15px;
    }
    
    .hash-tool-wrapper .related-tool-card h5 {
        font-weight: 600;
        color: #343a40;
        margin-bottom: 10px;
    }
    
    .hash-tool-wrapper .related-tool-card p {
        color: #6c757d;
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* Toast/Popup Styles */
    .hash-tool-wrapper .toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
    }
    
    .hash-tool-wrapper .custom-toast {
        background: #ffffff;
        border-radius: 12px;
        padding: 16px 24px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
        transform: translateX(120%);
        transition: transform 0.3s ease;
        min-width: 300px;
        border-left: 4px solid #146c43;
    }
    
    .hash-tool-wrapper .custom-toast.show {
        transform: translateX(0);
    }
    
    .hash-tool-wrapper .custom-toast.success {
        border-left-color: #146c43;
    }
    
    .hash-tool-wrapper .custom-toast.error {
        border-left-color: #fe015e;
    }
    
    .hash-tool-wrapper .custom-toast.warning {
        border-left-color: #ffbd29;
    }
    
    .hash-tool-wrapper .toast-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
    
    .hash-tool-wrapper .toast-icon.success {
        background: rgba(20,108,67,0.15);
        color: #146c43;
    }
    
    .hash-tool-wrapper .toast-icon.error {
        background: rgba(254,1,94,0.15);
        color: #fe015e;
    }
    
    .hash-tool-wrapper .toast-icon.warning {
        background: rgba(255,189,41,0.25);
        color: #d49b00;
    }
    
    .hash-tool-wrapper .toast-content h6 {
        font-weight: 600;
        color: #343a40;
        margin: 0 0 3px;
        font-size: 0.95rem;
    }
    
    .hash-tool-wrapper .toast-content p {
        color: #6c757d;
        margin: 0;
        font-size: 0.85rem;
    }
    
    .hash-tool-wrapper .toast-close {
        background: none;
        border: none;
        color: #adb5bd;
        cursor: pointer;
        padding: 5px;
        margin-left: auto;
        transition: color 0.2s;
    }
    
    .hash-tool-wrapper .toast-close:hover {
        color: #495057;
    }
    
    /* Responsive */
    @media (max-width: 991px) {
        .hash-tool-wrapper .hero-title {
            font-size: 2.2rem;
        }
        
        .hash-tool-wrapper .main-tool-card {
            padding: 30px 25px;
        }
        
        .hash-tool-wrapper .content-section {
            padding: 35px 25px;
        }
    }
    
    @media (max-width: 767px) {
        .hash-tool-wrapper .tool-hero-section {
            padding: 35px 25px;
        }
        
        .hash-tool-wrapper .hero-title {
            font-size: 1.8rem;
        }
        
        .hash-tool-wrapper .hero-subtitle {
            font-size: 1rem;
        }
        
        .hash-tool-wrapper .algo-btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        
        .hash-tool-wrapper .upload-zone {
            padding: 40px 25px;
        }
        
        .hash-tool-wrapper .upload-icon {
            width: 80px;
            height: 80px;
        }
        
        .hash-tool-wrapper .upload-icon i {
            font-size: 2rem;
        }
        
        .hash-tool-wrapper .action-btn {
            width: 100%;
            justify-content: center;
        }
        
        .hash-tool-wrapper .custom-toast {
            min-width: auto;
            margin: 0 15px;
        }
    }