/* ==========================================================================
   Advertisement Landing Page Styles
   ========================================================================== */

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.ad-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a1a;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #4a4a5a;
}

strong {
    color: #0a0a1a;
    font-weight: 600;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.ad-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-btn-primary {
    background: linear-gradient(135deg, #00875a 0%, #006644 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 135, 90, 0.3);
}

.ad-btn-primary:hover {
    background: linear-gradient(135deg, #006644 0%, #004d33 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 135, 90, 0.4);
}

.ad-btn-secondary {
    background: #ffffff;
    color: #00875a;
    border: 2px solid #00875a;
}

.ad-btn-secondary:hover {
    background: #00875a;
    color: #ffffff;
}

.ad-btn-accent {
    background: linear-gradient(135deg, #ff6b35 0%, #e55320 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.ad-btn-accent:hover {
    background: linear-gradient(135deg, #e55320 0%, #cc4010 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.ad-btn-full {
    width: 100%;
}

.ad-btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 135, 90, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 135, 90, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 135, 90, 0);
    }
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */

.ad-section-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00875a;
    margin-bottom: 12px;
}

.ad-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ad-section-desc {
    font-size: 1.125rem;
    color: #4a4a5a;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.ad-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 50%, #fff3e0 100%);
    overflow: hidden;
}

.ad-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 135, 90, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.ad-hero-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: start;
}

.ad-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00875a 0%, #006644 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.ad-hero-content h1 {
    color: #0a0a1a;
    margin-bottom: 24px;
}

.ad-hero-lead {
    font-size: 1.25rem;
    color: #3a3a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.ad-hero-highlight {
    background: #ffffff;
    border-left: 4px solid #00875a;
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ad-hero-highlight h3 {
    color: #0a0a1a;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.ad-hero-highlight p {
    margin-bottom: 8px;
    color: #4a4a5a;
}

.ad-hero-highlight p:last-child {
    margin-bottom: 0;
}

.ad-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ad-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 135, 90, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #00875a;
}

.ad-trust-badge i {
    font-size: 1rem;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.ad-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ad-form-card-accent {
    border: 2px solid #00875a;
    box-shadow: 0 10px 40px rgba(0, 135, 90, 0.15);
}

.ad-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.ad-form-header h3 {
    color: #0a0a1a;
    margin-bottom: 8px;
}

.ad-form-header p {
    font-size: 0.9375rem;
    color: #6a6a7a;
    margin-bottom: 0;
}

.ad-urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #e55320 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.ad-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ad-form-group input,
.ad-form-group select,
.ad-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.ad-form-group input:focus,
.ad-form-group select:focus,
.ad-form-group textarea:focus {
    outline: none;
    border-color: #00875a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 135, 90, 0.1);
}

.ad-form-group input::placeholder,
.ad-form-group textarea::placeholder {
    color: #9a9aaa;
}

.ad-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236a6a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.ad-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.ad-services {
    padding: 100px 0;
    background: #ffffff;
}

.ad-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.ad-service-card {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.ad-service-card:hover {
    background: #ffffff;
    border-color: rgba(0, 135, 90, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.ad-service-card:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ad-service-card-highlight {
    background: linear-gradient(135deg, rgba(0, 135, 90, 0.05) 0%, rgba(0, 135, 90, 0.1) 100%);
    border: 2px solid rgba(0, 135, 90, 0.2);
}

.ad-service-card-highlight:hover {
    border-color: #00875a;
}

.ad-service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55320 100%);
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
}

.ad-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00875a 0%, #006644 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ad-service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.ad-service-card h3 {
    color: #0a0a1a;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.ad-service-card p {
    font-size: 0.9375rem;
    color: #5a5a6a;
    margin-bottom: 0;
    line-height: 1.6;
}

.ad-services-closing {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    border-radius: 16px;
}

.ad-services-closing p {
    font-size: 1.125rem;
    color: #3a3a4a;
    margin-bottom: 0;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.ad-why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
}

.ad-why-us .ad-section-eyebrow {
    color: #4ade80;
}

.ad-why-us h2 {
    color: #ffffff;
}

.ad-why-us .ad-section-desc {
    color: #a0a0b0;
}

.ad-why-us-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: start;
}

.ad-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.ad-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 4px;
}

.ad-stat-label {
    font-size: 0.8125rem;
    color: #a0a0b0;
}

.ad-features-list {
    list-style: none;
    margin: 32px 0;
}

.ad-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-features-list li:last-child {
    border-bottom: none;
}

.ad-features-list li i {
    font-size: 1.25rem;
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 2px;
}

.ad-features-list li span {
    font-size: 1rem;
    color: #d0d0e0;
    line-height: 1.6;
}

.ad-why-us .ad-btn-secondary {
    background: transparent;
    color: #4ade80;
    border-color: #4ade80;
}

.ad-why-us .ad-btn-secondary:hover {
    background: #4ade80;
    color: #0a0a1a;
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.ad-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.ad-process-timeline {
    max-width: 800px;
    margin: 0 auto 48px;
    position: relative;
}

.ad-process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, #00875a 0%, #4ade80 100%);
}

.ad-process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.ad-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00875a 0%, #006644 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 135, 90, 0.3);
}

.ad-step-content h3 {
    color: #0a0a1a;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.ad-step-content p {
    color: #5a5a6a;
    margin-bottom: 0;
    font-size: 1rem;
}

.ad-process-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 135, 90, 0.08) 0%, rgba(0, 135, 90, 0.12) 100%);
    border-radius: 12px;
    border-left: 4px solid #00875a;
}

.ad-process-note i {
    font-size: 1.5rem;
    color: #00875a;
    flex-shrink: 0;
}

.ad-process-note p {
    color: #3a3a4a;
    margin-bottom: 0;
    font-size: 1rem;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */

.ad-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 50%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.ad-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(0, 135, 90, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.ad-final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.ad-final-cta-content .ad-section-desc {
    margin-bottom: 40px;
}

.ad-final-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.ad-final-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.ad-final-benefit i {
    font-size: 1.75rem;
    color: #00875a;
    flex-shrink: 0;
}

.ad-final-benefit h4 {
    font-size: 1.125rem;
    color: #0a0a1a;
    margin-bottom: 4px;
}

.ad-final-benefit p {
    font-size: 0.9375rem;
    color: #5a5a6a;
    margin-bottom: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.ad-footer {
    padding: 24px 0;
    background: #0a0a1a;
    text-align: center;
}

.ad-footer p {
    color: #6a6a7a;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .ad-hero-grid,
    .ad-why-us-grid,
    .ad-final-cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ad-hero-form-wrapper,
    .ad-why-us-form-wrapper,
    .ad-final-form-wrapper {
        max-width: 500px;
    }

    .ad-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ad-hero {
        padding: 60px 0;
    }

    .ad-services,
    .ad-why-us,
    .ad-process,
    .ad-final-cta {
        padding: 60px 0;
    }

    .ad-section-header {
        margin-bottom: 40px;
    }

    .ad-services-grid {
        grid-template-columns: 1fr;
    }

    .ad-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ad-stat {
        padding: 16px;
    }

    .ad-stat-number {
        font-size: 1.5rem;
    }

    .ad-form-card {
        padding: 24px;
    }

    .ad-process-timeline::before {
        left: 20px;
    }

    .ad-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .ad-trust-badges {
        flex-direction: column;
    }

    .ad-trust-badge {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ad-container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .ad-hero-lead {
        font-size: 1.0625rem;
    }

    .ad-hero-highlight {
        padding: 20px;
    }

    .ad-hero-highlight h3 {
        font-size: 1.125rem;
    }

    .ad-service-card {
        padding: 24px;
    }

    .ad-btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .ad-final-benefit {
        padding: 16px;
    }

    .ad-final-benefit i {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Form Highlight Animation (on service card click)
   ========================================================================== */

.form-highlight .ad-form-card {
    animation: formPulse 1.5s ease;
}

@keyframes formPulse {
    0% {
        box-shadow: 0 20px 60px rgba(0, 135, 90, 0.15);
    }
    25% {
        box-shadow: 0 20px 60px rgba(0, 135, 90, 0.4), 0 0 0 4px rgba(0, 135, 90, 0.2);
    }
    50% {
        box-shadow: 0 20px 60px rgba(0, 135, 90, 0.3), 0 0 0 8px rgba(0, 135, 90, 0.1);
    }
    100% {
        box-shadow: 0 20px 60px rgba(0, 135, 90, 0.15);
    }
}

/* ==========================================================================
   ISO Training Section
   ========================================================================== */

.ad-iso-training {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #fff8e1 50%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.ad-iso-training::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 135, 90, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 152, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.ad-iso-training-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.ad-iso-training-content h2 {
    color: #0a0a1a;
    margin-bottom: 32px;
    line-height: 1.3;
}

.ad-training-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.ad-training-type {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 135, 90, 0.1);
    transition: all 0.3s ease;
}

.ad-training-type:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 135, 90, 0.3);
}

.ad-training-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00875a 0%, #006644 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 135, 90, 0.3);
}

.ad-training-info h3 {
    color: #0a0a1a;
    margin-bottom: 6px;
    font-size: 1.125rem;
}

.ad-training-info p {
    color: #5a5a6a;
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.ad-ims-highlight {
    background: linear-gradient(135deg, rgba(0, 135, 90, 0.1) 0%, rgba(0, 135, 90, 0.05) 100%);
    border: 2px solid rgba(0, 135, 90, 0.2);
    border-radius: 16px;
    padding: 28px;
    position: relative;
}

.ad-ims-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00875a 0%, #006644 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.ad-ims-badge i {
    font-size: 0.875rem;
}

.ad-ims-highlight h4 {
    color: #0a0a1a;
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ad-ims-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #5a5a6a;
}

.ad-ims-note i {
    color: #ff9800;
    flex-shrink: 0;
    margin-top: 2px;
}

.ad-iso-training-form-wrapper {
    max-width: 450px;
}

/* Form Error Styles */
.ad-form-error {
    display: none;
    font-size: 0.8125rem;
    color: #dc3545;
    margin-top: 6px;
    padding-left: 4px;
}

.ad-form-group.has-error input,
.ad-form-group.has-error select,
.ad-form-group.has-error textarea {
    border-color: #dc3545;
    background: #fff8f8;
}

.ad-form-group.has-error .ad-form-error {
    display: block;
}

/* Responsive Styles for ISO Training */
@media (max-width: 1024px) {
    .ad-iso-training-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ad-iso-training-form-wrapper {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .ad-iso-training {
        padding: 60px 0;
    }

    .ad-training-type {
        padding: 20px;
    }

    .ad-training-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .ad-ims-highlight {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .ad-training-type {
        flex-direction: column;
        gap: 12px;
    }

    .ad-training-number {
        width: 36px;
        height: 36px;
        font-size: 0.9375rem;
    }
}

