/* =============================================
   JOSH ARKSEY SPORTS MASSAGE - CANCELLATION POLICY
   arksey-cancellation-1.css
   All classes prefixed with 'arksey-' to avoid conflicts
   ============================================= */

/* =============================================
   BASIC RESET
   ============================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'K2D', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* =============================================
   FONT FACE - EUROSTILE EXTENDED TWO
   ============================================= */

@font-face {
    font-family: 'Eurostile Extended Two';
    src: url('/fonts/EurostileExtendedTwo.woff2') format('woff2'),
         url('/fonts/EurostileExtendedTwo.woff') format('woff'),
         url('/fonts/EurostileExtendedTwo.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =============================================
   CANCELLATION POLICY SECTION
   ============================================= */

.arksey-cancellation {
    padding: 100px 20px;
    background: #ffffff;
}

.arksey-cancellation-container {
    max-width: 800px;
    margin: 0 auto;
}

.arksey-cancellation-title {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.arksey-cancellation-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    border-radius: 2px;
}

.arksey-cancellation-note {
    font-family: 'K2D', sans-serif;
    font-size: 1.1em;
    line-height: 1.7;
    color: #ff0000;
    font-weight: 600;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 20px 25px;
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid #ff0000;
    border-radius: 0 8px 8px 0;
}

.arksey-cancellation-subtitle {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: #222222;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.arksey-cancellation-text {
    font-family: 'K2D', sans-serif;
    font-size: 1.05em;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 20px 0;
}

.arksey-cancellation-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.arksey-cancellation-list li {
    font-family: 'K2D', sans-serif;
    font-size: 1.05em;
    line-height: 1.8;
    color: #555555;
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.arksey-cancellation-list li:last-child {
    border-bottom: none;
}

.arksey-cancellation-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #ff0000;
    font-size: 1.3em;
    font-weight: bold;
}


/* =============================================
   CANCELLATION TABLET (max-width: 1024px)
   ============================================= */

@media (max-width: 1024px) {
    .arksey-cancellation {
        padding: 80px 20px;
    }
    
    .arksey-cancellation-title {
        font-size: 1.9em;
    }
    
    .arksey-cancellation-note {
        font-size: 1.05em;
        margin-bottom: 35px;
    }
    
    .arksey-cancellation-subtitle {
        font-size: 1.2em;
    }
}


/* =============================================
   CANCELLATION MOBILE (max-width: 768px)
   ============================================= */

@media (max-width: 768px) {
    .arksey-cancellation {
        padding: 60px 15px;
    }
    
    .arksey-cancellation-title {
        font-size: 1.6em;
        padding-bottom: 20px;
    }
    
    .arksey-cancellation-title::after {
        width: 60px;
    }
    
    .arksey-cancellation-note {
        font-size: 1em;
        padding: 18px 20px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .arksey-cancellation-subtitle {
        font-size: 1.15em;
        margin-top: 35px;
    }
    
    .arksey-cancellation-text {
        font-size: 1em;
    }
    
    .arksey-cancellation-list li {
        font-size: 1em;
        padding: 10px 0 10px 30px;
    }
}


/* =============================================
   CANCELLATION SMALL MOBILE (max-width: 480px)
   ============================================= */

@media (max-width: 480px) {
    .arksey-cancellation {
        padding: 50px 12px;
    }
    
    .arksey-cancellation-title {
        font-size: 1.4em;
    }
    
    .arksey-cancellation-note {
        font-size: 0.95em;
        padding: 15px 18px;
    }
    
    .arksey-cancellation-subtitle {
        font-size: 1.1em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .arksey-cancellation-text {
        font-size: 0.95em;
        line-height: 1.75;
    }
    
    .arksey-cancellation-list li {
        font-size: 0.95em;
        padding: 8px 0 8px 28px;
    }
    
    .arksey-cancellation-list li::before {
        left: 8px;
    }
}
