/* === INSURANCE PAGE STYLES - COMPLETELY UNIQUE CLASSES === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --ins-orange: #ff6f00;
    --ins-orange-light: #ff8c33;
    --ins-orange-dark: #e65100;
    --ins-white: #ffffff;
    --ins-dark: #111111;
    --ins-glass: rgba(26,26,26,0.85);
    --ins-shadow: 0 20px 60px rgba(255,111,0,0.3);
    --ins-shadow-mega: 0 30px 90px rgba(255,111,0,0.5);
    --ins-blur: blur(20px);
}

/* Page Wrapper */
.ins-page-wrapper {
    position: relative;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: var(--ins-white);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #111111);
    overflow-x: hidden;
}

/* Particles */
.ins-particles-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ins-particle-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ins-neon-orange .ins-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ins-orange), transparent);
    opacity: 0.4;
    animation: ins-float 22s linear infinite;
}

.ins-neon-white .ins-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ins-white), transparent);
    opacity: 0.3;
    animation: ins-float 24s linear infinite;
}

.ins-particle.ins-f1 { top: 10%; left: 20%; animation-delay: 0s; }
.ins-particle.ins-f2 { top: 50%; left: 70%; animation-delay: 5s; }
.ins-particle.ins-f3 { top: 80%; left: 40%; animation-delay: 10s; }

/* Gradient Overlay */
.ins-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 40%, rgba(255,111,0,0.05), transparent);
    pointer-events: none;
    z-index: 1;
    animation: ins-pulse-glow 8s ease-in-out infinite;
}

@keyframes ins-pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Container */
.ins-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.ins-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    gap: 50px;
}

.ins-hero-text {
    flex: 1;
    max-width: 600px;
}

.ins-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.ins-highlight {
    background: linear-gradient(135deg, var(--ins-orange), var(--ins-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ins-gradient-shift 3s ease infinite;
}

@keyframes ins-gradient-shift {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(10deg) brightness(1.2); }
}

.ins-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.ins-hero-btn {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: var(--ins-white);
    background: linear-gradient(135deg, var(--ins-orange), var(--ins-orange-light));
    box-shadow: var(--ins-shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ins-hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--ins-shadow-mega);
}

.ins-hero-btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}

.ins-hero-btn:hover .ins-hero-btn-glow {
    left: 100%;
}

/* Hero Image */
.ins-hero-image {
    flex: 1;
    max-width: 600px;
}

.ins-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--ins-shadow);
    transition: transform 0.6s ease;
}

.ins-hero-image img:hover {
    transform: scale(1.05) rotate(1deg);
}

/* Benefits Section */
.ins-benefits-section {
    margin: 120px 0;
    text-align: center;
}

.ins-benefits-header {
    margin-bottom: 60px;
    position: relative;
}

.ins-benefits-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ins-white), rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.ins-benefits-title::before,
.ins-benefits-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ins-orange));
}

.ins-benefits-title::before {
    left: 0;
}

.ins-benefits-title::after {
    right: 0;
    background: linear-gradient(90deg, var(--ins-orange), transparent);
}

.ins-benefits-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--ins-orange), var(--ins-orange-light), transparent);
    margin: 25px auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255,111,0,0.8);
    animation: ins-divider-pulse 2s ease-in-out infinite;
}

@keyframes ins-divider-pulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(255,111,0,0.8);
        transform: scaleX(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(255,111,0,1);
        transform: scaleX(1.1);
    }
}

.ins-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ins-benefit-card {
    background: var(--ins-glass);
    backdrop-filter: var(--ins-blur);
    border-radius: 20px;
    padding: 40px 25px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ins-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ins-orange), var(--ins-orange-light));
    opacity: 0;
    transition: opacity 0.3s;
}

.ins-benefit-card:hover::before {
    opacity: 1;
}

.ins-benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--ins-shadow-mega);
    border-color: rgba(255, 111, 0, 0.3);
}

.ins-benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--ins-orange);
    transition: all 0.4s ease;
}

.ins-benefit-card:hover .ins-benefit-icon {
    transform: scale(1.1) rotateY(360deg);
    filter: drop-shadow(0 0 20px var(--ins-orange));
}

.ins-benefit-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--ins-white), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ins-benefit-text {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Plans Section - ULTRA ENHANCED */
.ins-plan-section {
    margin: 120px 0;
    text-align: center;
}

.ins-plan-header {
    margin-bottom: 60px;
    position: relative;
}

.ins-plan-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ins-white), rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding: 0 30px;
    margin-bottom: 15px;
}

.ins-plan-title::before,
.ins-plan-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ins-orange));
}

.ins-plan-title::before {
    left: 0;
}

.ins-plan-title::after {
    right: 0;
    background: linear-gradient(90deg, var(--ins-orange), transparent);
}

.ins-plan-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--ins-orange), var(--ins-orange-light), transparent);
    margin: 25px auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255,111,0,0.8);
    animation: ins-divider-pulse 2s ease-in-out infinite;
}

.ins-plan-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-top: 15px;
}

.ins-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    perspective: 1000px;
}

/* Plan Cards - STUNNING DESIGN */
.ins-plan-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26,26,26,0.9), rgba(20,20,20,0.95));
    backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 50px 35px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Animated gradient border */
.ins-plan-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        var(--ins-orange), 
        var(--ins-orange-light),
        transparent,
        transparent);
    border-radius: 28px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: ins-rotate-border 3s linear infinite;
}

@keyframes ins-rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ins-plan-card:hover::before {
    opacity: 1;
}

/* Glowing top accent */
.ins-plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent,
        var(--ins-orange),
        var(--ins-orange-light),
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 20px var(--ins-orange);
}

.ins-plan-card:hover::after {
    opacity: 1;
}

.ins-plan-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(255,111,0,0.4),
        0 0 60px rgba(255,111,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(255, 111, 0, 0.3);
}

/* Plan Name */
.ins-plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--ins-orange), var(--ins-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ins-plan-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ins-orange), transparent);
    border-radius: 10px;
}

/* Plan Price - ENHANCED */
.ins-plan-price {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ins-white);
    padding: 12px 30px;
    background: linear-gradient(135deg, 
        rgba(255,111,0,0.2), 
        rgba(255,140,51,0.15));
    border-radius: 50px;
    border: 2px solid rgba(255,111,0,0.4);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(255,111,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.ins-plan-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.ins-plan-card:hover .ins-plan-price::before {
    left: 100%;
}

.ins-plan-card:hover .ins-plan-price {
    border-color: var(--ins-orange);
    box-shadow: 
        0 8px 35px rgba(255,111,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* Plan Features List - STUNNING DESIGN */
.ins-plan-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.ins-plan-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ins-plan-feature-item::before {
    content: '✓';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ins-white);
    background: linear-gradient(135deg, var(--ins-orange), var(--ins-orange-light));
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255,111,0,0.3);
    transition: all 0.3s ease;
}

.ins-plan-feature-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--ins-orange), var(--ins-orange-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ins-plan-feature-item:hover {
    background: rgba(255,111,0,0.08);
    border-color: rgba(255,111,0,0.2);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(255,111,0,0.15);
}

.ins-plan-feature-item:hover::after {
    opacity: 1;
}

.ins-plan-feature-item:hover::before {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 25px rgba(255,111,0,0.6);
}

/* Plan Button - ENHANCED */
.ins-plan-btn {
    display: inline-block;
    padding: 16px 50px;
    margin-top: 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--ins-orange), var(--ins-orange-light));
    color: var(--ins-white);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255,111,0,0.4);
    position: relative;
    overflow: hidden;
}

.ins-plan-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ins-plan-btn:hover::before {
    width: 400px;
    height: 400px;
}

.ins-plan-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255,111,0,0.6);
}

.ins-plan-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Empty State */
.ins-plan-empty {
    grid-column: 1 / -1;
    padding: 60px 30px;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 2px dashed rgba(255,255,255,0.1);
}

/* Contact Form Section */
.ins-contact-section {
    margin: 120px 0;
    text-align: center;
}

.ins-contact-header {
    margin-bottom: 50px;
}

.ins-contact-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ins-orange), var(--ins-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.ins-contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

.ins-contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--ins-glass);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 
                0 0 0 1px rgba(255,111,0,0.1) inset;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ins-contact-card:hover {
    border-color: rgba(255, 111, 0, 0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 
                0 0 40px rgba(255,111,0,0.2),
                0 0 0 1px rgba(255,111,0,0.2) inset;
}

.ins-contact-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ins-orange), transparent);
    opacity: 0.6;
}

.ins-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.ins-contact-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ins-contact-input,
.ins-contact-select,
.ins-contact-textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ins-white);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.ins-contact-input:hover,
.ins-contact-select:hover,
.ins-contact-textarea:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.ins-contact-input:focus,
.ins-contact-select:focus,
.ins-contact-textarea:focus {
    border-color: var(--ins-orange);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.1),
                0 8px 20px rgba(255,111,0,0.2);
    transform: translateY(-2px);
}

.ins-contact-input::placeholder,
.ins-contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ins-contact-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='%23ff6f00' 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 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.ins-contact-select option {
    background: #1a1a1a;
    color: var(--ins-white);
    padding: 12px;
}

.ins-contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.ins-contact-btn {
    width: 100%;
    padding: 18px 50px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ins-white);
    background: linear-gradient(135deg, var(--ins-orange), var(--ins-orange-light));
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ins-contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ins-contact-btn:hover::before {
    width: 400px;
    height: 400px;
}

.ins-contact-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 111, 0, 0.6);
}

.ins-contact-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.ins-contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Animations */
@keyframes ins-float {
    0% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-40px) translateX(40px); opacity: 0.2; }
    100% { transform: translateY(0) translateX(0); opacity: 0.4; }
}

/* Responsive */
@media (max-width: 1024px) {
    .ins-hero {
        flex-direction: column;
        text-align: center;
    }
    .ins-hero-text {
        max-width: 100%;
    }
    .ins-hero-image {
        max-width: 100%;
    }
    .ins-plan-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .ins-benefits-section,
    .ins-plan-section,
    .ins-contact-section {
        margin: 80px 0;
    }
    
    .ins-benefits-title,
    .ins-plan-title {
        font-size: 2.2rem;
    }
    
    .ins-plan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ins-plan-card {
        padding: 40px 30px;
    }
    
    .ins-contact-card {
        padding: 35px 25px;
    }

    .ins-contact-title {
        font-size: 2.2rem;
    }

    .ins-contact-subtitle {
        font-size: 1rem;
    }

    .ins-contact-input,
    .ins-contact-select,
    .ins-contact-textarea {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .ins-contact-btn {
        font-size: 1rem;
        padding: 14px 35px;
    }
}

@media (max-width: 480px) {
    .ins-container {
        padding: 0 15px;
    }
    
    .ins-hero-title {
        font-size: 2rem;
    }
    
    .ins-hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .ins-plan-card {
        padding: 35px 25px;
    }
    
    .ins-plan-name {
        font-size: 1.5rem;
    }
    
    .ins-plan-feature-item {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .ins-contact-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .ins-contact-title {
        font-size: 1.75rem;
    }
    
    .ins-contact-btn,
    .ins-plan-btn {
        width: 100%;
        text-align: center;
    }
}