/* Registration Card Styles */
.registration-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
    border: 1px solid rgba(86, 65, 139, 0.1);
}

.registration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(86, 65, 139, 0.25);
}

.registration-card .card-header {
    position: relative;
    padding: 28px 24px 20px;
    text-align: center;
    border-radius: 18px 18px 0 0;
    color: white;
    background: #56418B;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.registration-card .card-header:before {
    content: '';
    position: absolute;
    top: -80px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.registration-card .card-header:after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.registration-card .card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.registration-card .price-container {
    display: flex;
    justify-content: space-between;
    padding: 18px;
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.registration-card .price-column {
    text-align: center;
    flex: 1;
}

.registration-card .price-column:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.registration-card .price-label {
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: 0.8px;
}

.registration-card .price {
    font-size: 20px;
    font-weight: 700;
}

.registration-card .card-body {
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.registration-card .btn-style-one {
    background: #56418B;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 5px 15px rgba(86, 65, 139, 0.2);
}

.registration-card .btn-style-one:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(35deg);
    top: -60px;
    left: -100px;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.registration-card .btn-style-one:hover:after {
    left: 120%;
}

.registration-card .btn-style-one:hover {
    background: #4965AE;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(73, 101, 174, 0.4);
}

.registration-includes {
    margin-top: 60px;
    padding: 40px 30px;
    background-color: #f8f9ff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(86, 65, 139, 0.06);
    border: 1px solid rgba(86, 65, 139, 0.05);
    position: relative;
    overflow: hidden;
}

.registration-includes:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(86, 65, 139, 0.08);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
}

.registration-includes:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(73, 101, 174, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.registration-includes h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    color: #56418B;
    font-weight: 700;
}

.registration-includes h3:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 70px;
    height: 4px;
    background: #56418B;
    border-radius: 2px;
}

.include-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    border: 1px solid rgba(86, 65, 139, 0.08);
}

.include-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(86, 65, 139, 0.18);
    border-color: rgba(86, 65, 139, 0.2);
}

.include-card .icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 22px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.include-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(86, 65, 139, 0.25);
}

.include-card .icon:before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.include-card .content h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.include-card:hover .content h5 {
    color: #56418B;
}

/* Color Schemes for Registration Cards */
.clinicians-card .card-header {
    background: linear-gradient(145deg, #56418B, #4965AE);
}

.embryologists-card .card-header {
    background: linear-gradient(145deg, #4965AE, #56418B);
}

.non-isar-card .card-header {
    background: linear-gradient(145deg, #56418B, #3A2D5F);
}

.accompanying-card .card-header {
    background: linear-gradient(145deg, #4965AE, #364C87);
}

.students-card .card-header {
    background: linear-gradient(145deg, #56418B, #56418B 60%, #4965AE);
}

.foreign-card .card-header {
    background: linear-gradient(145deg, #4965AE, #4965AE 60%, #56418B);
}

/* Icons for Includes */
.lunch-icon {
    background: #56418B;
}

.gala-icon {
    background: #4965AE;
}

.banquet-icon {
    background: #56418B;
}

.certificate-icon {
    background: #4965AE;
}

.access-icon {
    background: #56418B;
}

.gst-icon {
    background: linear-gradient(145deg, #56418B, #4965AE);
}

.gst-icon:before, .gst-icon:after {
    background: rgba(73, 101, 174, 0.2);
}

/* Smooth border transitions for include cards */
.include-card:nth-child(odd) {
    border-left: 0px solid #56418B;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.include-card:nth-child(even) {
    border-right: 0px solid #4965AE;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.include-card:nth-child(odd):hover {
    border-left: 4px solid #56418B;
}

.include-card:nth-child(even):hover {
    border-right: 4px solid #4965AE;
}

/* Additional Styling for Price Labels */
.price-label {
    position: relative;
}

.price-label:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: rgba(86, 65, 139, 0.5);
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

/* Highlight Early Bird */
.price-column:first-child .price {
    position: relative;
}

.price-column:first-child .price:after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    background: rgba(86, 65, 139, 0.2);
    color: #56418B;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
}

.registration-card:hover .price-column:first-child .price:after {
    opacity: 0;
    bottom: -22px;
}

/* Additional Styling for Cards */
.registration-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: #56418B;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.registration-card:hover:before {
    transform: scaleX(1);
}

/* Add ripple effect on hover */
.registration-card .card-header:hover:before {
    animation: ripple 1.5s ease-in-out;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Registration note hover effect */
.registration-note {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.registration-note:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(86, 65, 139, 0.12);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .registration-card .price-container {
        flex-direction: column;
    }
    
    .registration-card .price-column {
        padding: 12px 0;
    }
    
    .registration-card .price-column:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .include-card {
        margin-bottom: 15px;
    }
}

/* Styling for registration note */
.registration-note {
    font-size: 15px;
    background: #f8f9ff;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(86, 65, 139, 0.08);
    border: 1px solid rgba(86, 65, 139, 0.05);
    color: #555;
    position: relative;
}

.note-highlight {
    color: #56418B;
    font-weight: 600;
    position: relative;
}

.note-highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #4965AE;
    bottom: -2px;
    left: 0;
    border-radius: 2px;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .registration-note {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .registration-card .price-container {
        flex-direction: column;
    }
    
    .registration-card .price-column {
        padding: 12px 0;
    }
    
    .registration-card .price-column:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .include-card {
        margin-bottom: 15px;
    }
}

/* GAPM 2026 Registration Section Styles */

/* Main Registration Section */
.gapm-registration-section {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(55, 133, 196, 0.05) 0%, #ffffff 100%);
    position: relative;
}

/* Section Header */
.gapm-sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.gapm-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #071D6A;
    margin-bottom: 15px;
}

.gapm-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Registration Cards */
.gapm-registration-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(55, 133, 196, 0.2);
}

.gapm-card-header {
    background: linear-gradient(135deg, #071D6A 0%, #083281 100%);
    padding: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.gapm-card-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.gapm-card-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.gapm-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

.gapm-card-subtitle {
    margin: 10px 0 0;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: #d8d8d8;
}

/* Table Styles */
.gapm-table-responsive {
    margin: 0;
}

.gapm-registration-table {
    margin: 0;
    width: 100%;
}

.gapm-table-header {
    background: linear-gradient(135deg, rgba(55, 133, 196, 0.08) 0%, #ffffff 100%);
    border-bottom: 2px solid #071D6A;
}

.gapm-table-header th {
    padding: 20px 25px;
    font-weight: 700;
    color: #071D6A;
    font-size: 16px;
    border-right: 1px solid #eee;
    text-align: center;
    min-width: 160px;
}

.gapm-table-header th:first-child {
    position: sticky;
    left: 0;
    background: rgba(55, 133, 196, 0.08);
    z-index: 10;
    text-align: left;
}

.gapm-table-header .header-icon {
    margin-right: 8px;
}

.gapm-table-header .header-icon.clock { color: #3785C4; }
.gapm-table-header .header-icon.calendar { color: #294093; }
.gapm-table-header .header-icon.plus { color: #083281; }
.gapm-table-header .header-icon.tag { color: #071D6A; }

.gapm-table-header small {
    font-weight: 500;
    color: #666;
    font-size: 13px;
}

/* Table Body */
.gapm-table-row {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.gapm-table-row:hover {
    background: rgba(55, 133, 196, 0.02);
}

.gapm-category-cell {
    padding: 25px;
    font-weight: 600;
    color: #071D6A;
    font-size: 16px;
    border-right: 1px solid #eee;
    position: sticky;
    left: 0;
    background: white;
    z-index: 5;
}

.gapm-category-content {
    display: flex;
    align-items: center;
}

.gapm-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.gapm-category-icon.pathologist {
    background: linear-gradient(135deg, #071D6A, #083281);
}

.gapm-category-icon.student {
    background: linear-gradient(135deg, #083281, #294093);
}

.gapm-category-icon i {
    color: white;
    font-size: 16px;
}

/* Price Cells */
.gapm-price-cell {
    padding: 25px;
    text-align: center;
    font-size: 18px; /* Reduced from 20px */
    font-weight: 700;
    border-right: 1px solid #eee;
    position: relative;
}

.gapm-price-cell.early-bird {
    color: #3785C4;
}

.gapm-price-cell.late {
    color: #294093;
}

.gapm-price-cell.spot {
    color: #083281;
}

.gapm-price-box {
    background: rgba(55, 133, 196, 0.15);
    padding: 10px 18px; /* Reduced padding */
    border-radius: 12px;
    display: inline-block;
    font-size: 16px; /* Reduced from 20px */
}

.gapm-price-box.late {
    background: rgba(41, 64, 147, 0.15);
}

.gapm-price-box.spot {
    background: rgba(8, 50, 129, 0.15);
}

.gapm-save-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FE2020;
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

/* Registration Includes Section */
.gapm-includes-section {
    margin-bottom: 40px;
}

.gapm-includes-header {
    text-align: center;
    margin-bottom: 30px;
}

.gapm-includes-title {
    color: #071D6A;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gapm-includes-subtitle {
    color: #666;
    font-size: 16px;
}

.gapm-include-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(55, 133, 196, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 15px;
}

.gapm-include-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.gapm-include-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.gapm-include-icon.icon1 { background: linear-gradient(135deg, #071D6A, #083281); }
.gapm-include-icon.icon2 { background: linear-gradient(135deg, #3785C4, #294093); }
.gapm-include-icon.icon3 { background: linear-gradient(135deg, #083281, #071D6A); }
.gapm-include-icon.icon4 { background: linear-gradient(135deg, #294093, #3785C4); }
.gapm-include-icon.icon5 { background: linear-gradient(135deg, #071D6A, #294093); }

.gapm-include-icon i {
    color: white;
    font-size: 20px;
}

.gapm-include-text {
    color: #071D6A;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Patron Membership Section */
.gapm-patron-header {
    background: linear-gradient(135deg, #083281 0%, #071D6A 100%);
}

.gapm-patron-table-header {
    background: linear-gradient(135deg, rgba(55, 133, 196, 0.08) 0%, #ffffff 100%);
    border-bottom: 2px solid #071D6A;
}

.gapm-patron-table-header th {
    padding: 20px 25px;
    font-weight: 700;
    color: #071D6A;
    font-size: 16px;
    border-right: 1px solid #eee;
}

.gapm-patron-table-header th:last-child {
    text-align: center;
}

.gapm-patron-row {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.gapm-patron-row.premium {
    background: linear-gradient(135deg, rgba(55, 133, 196, 0.05) 0%, rgba(7, 29, 106, 0.05) 100%);
}

.gapm-patron-cell {
    padding: 25px;
    font-weight: 600;
    color: #071D6A;
    font-size: 16px;
    border-right: 1px solid #eee;
}

.gapm-patron-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.gapm-patron-icon.rc { background: linear-gradient(135deg, #071D6A, #083281); }
.gapm-patron-icon.core { background: linear-gradient(135deg, #3785C4, #294093); }
.gapm-patron-icon.executive { background: linear-gradient(135deg, #294093, #083281); }

.gapm-patron-icon i {
    color: white;
    font-size: 16px;
}

.gapm-premium-badge {
    background: #FE2020;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
}

.gapm-patron-price {
    padding: 25px;
    text-align: center;
    font-size: 20px; /* Reduced from 24px */
    font-weight: 700;
}

.gapm-patron-price.rc { color: #071D6A; }
.gapm-patron-price.core { color: #3785C4; }
.gapm-patron-price.executive { color: #294093; }

.gapm-patron-price-box {
    padding: 12px 20px; /* Reduced padding */
    border-radius: 15px;
    display: inline-block;
    font-size: 18px; /* Reduced from 24px */
}

.gapm-patron-price-box.rc { background: rgba(7, 29, 106, 0.15); }
.gapm-patron-price-box.core { background: rgba(55, 133, 196, 0.15); }
.gapm-patron-price-box.executive { background: rgba(41, 64, 147, 0.15); }

/* Important Information */
.gapm-info-section {
    background: linear-gradient(135deg, rgba(55, 133, 196, 0.05) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(55, 133, 196, 0.2);
    margin-bottom: 40px;
}

.gapm-info-box {
    text-align: center;
    padding: 20px;
}

.gapm-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.gapm-info-icon.gst {
    background: linear-gradient(135deg, #071D6A, #083281);
}

.gapm-info-icon.policy {
    background: linear-gradient(135deg, #3785C4, #294093);
}

.gapm-info-icon i {
    color: white;
    font-size: 24px;
}

.gapm-info-title {
    color: #071D6A;
    font-weight: 600;
    margin-bottom: 10px;
}

.gapm-info-text {
    color: #666;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.gapm-gst-highlight {
    color: #FE2020;
    font-weight: 700;
}

.gapm-policy-text {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.gapm-policy-highlight1 { color: #3785C4; font-weight: 600; }
.gapm-policy-highlight2 { color: #294093; font-weight: 600; }
.gapm-policy-highlight3 { color: #083281; font-weight: 600; }

/* CTA Section */
.gapm-cta-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(55, 133, 196, 0.2);
    margin-bottom: 20px;
}

.gapm-cta-title {
    color: #071D6A;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.gapm-cta-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.gapm-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.gapm-btn-primary {
    background: linear-gradient(135deg, #071D6A, #083281);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(7, 29, 106, 0.4);
    border: none;
}

.gapm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(7, 29, 106, 0.5);
    color: white;
    text-decoration: none;
}

.gapm-btn-secondary {
    background: transparent;
    border: 2px solid #3785C4;
    color: #3785C4;
    padding: 13px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.gapm-btn-secondary:hover {
    background: #3785C4;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.gapm-btn-icon {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .gapm-table-header th:first-child,
    .gapm-category-cell {
        position: static;
    }
    
    .gapm-registration-table {
        min-width: 600px;
    }
    
    .gapm-table-responsive {
        overflow-x: auto;
    }
}

@media (max-width: 767px) {
    .gapm-registration-section {
        padding: 60px 0;
    }
    
    .gapm-main-title {
        font-size: 28px;
    }
    
    .gapm-subtitle {
        font-size: 16px;
    }
    
    .gapm-registration-card {
        margin-bottom: 30px;
    }
    
    .gapm-card-header {
        padding: 20px;
    }
    
    .gapm-card-title {
        font-size: 20px;
    }
    
    .gapm-table-header th,
    .gapm-category-cell,
    .gapm-price-cell,
    .gapm-patron-cell,
    .gapm-patron-price {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .gapm-price-box,
    .gapm-patron-price-box {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .gapm-category-icon,
    .gapm-patron-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .gapm-category-icon i,
    .gapm-patron-icon i {
        font-size: 14px;
    }
    
    .gapm-include-item {
        padding: 15px;
    }
    
    .gapm-include-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .gapm-include-icon i {
        font-size: 16px;
    }
    
    .gapm-include-text {
        font-size: 13px;
    }
    
    .gapm-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gapm-btn-primary,
    .gapm-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .gapm-registration-section {
        padding: 40px 0;
    }
    
    .gapm-main-title {
        font-size: 24px;
    }
    
    .gapm-cta-section {
        padding: 25px 15px;
    }
    
    .gapm-info-section {
        padding: 20px 15px;
    }
}

/* Quick Note Section */
.gapm-quick-note {
    margin: 40px 0;
    padding: 0 15px;
}

.gapm-note-box {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border: 2px solid #3785C4;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(55,133,196,0.1);
    transition: all 0.3s ease;
}

.gapm-note-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55,133,196,0.15);
}

.gapm-note-icon {
    background: linear-gradient(135deg, #3785C4, #071D6A);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(55,133,196,0.3);
}

.gapm-note-content h5 {
    color: #071D6A;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gapm-note-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gapm-note-content li {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.gapm-note-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3785C4;
    font-weight: bold;
    font-size: 16px;
}

.gapm-note-content li strong {
    color: #FE2020;
    font-weight: 600;
}

/* Responsive Design for Quick Note */
@media (max-width: 768px) {
    .gapm-note-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .gapm-note-icon {
        margin: 0 auto;
    }
    
    .gapm-note-content h5 {
        font-size: 1.2rem;
    }
    
    .gapm-note-content li {
        font-size: 0.9rem;
    }
} 