 body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f4f4f5;
        margin: 0;
        padding: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    /* Header Styles */

    .site-header {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    background-color: white;
    padding: 5px 0;
    margin: 0;
}

    .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;  /* Constrain width for better spacing */
    max-width: 1200px;  /* Add a max-width */
    margin: 0 auto;  /* Center the container */
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
}
        
        .logo img {
    max-height: 40px;  /* Control logo size */
}

 /* Phone Section with icon beside text/number column */
.phone-section {
    display: flex;
    align-items: center;
    padding-right: 0;
}

.phone-section img {
    height: 48px;
    width: auto;
    margin-right: 10px;
}

/* Container for text and number */
.phone-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-text {
    font-size: 16px;
    color: #333;

}

.phone-number a {
    font-size: 20px;
    font-weight: bold;
    color: #1964a7;
    text-decoration: none;
}
    
   .quiz-container {
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    width: calc(100% - 40px); /* Use calc to account for margins */
    max-width: 600px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin: 20px auto;
    box-sizing: border-box;
}
    .quiz-header {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }
    .back-arrow {
        font-size: 24px;
        color: #333;
        text-decoration: none;
      
    }
    h1 {
        font-size: 32px;
        text-align: center;
        color: #333;
        margin: 0;
        flex-grow: 1;
        font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
        font-weight: 700;
        letter-spacing: -0.5px;
    }
    h2 {
        font-size: 24px;
        color: #333;
        margin: 0 0 24px 0;
        font-weight: 600;
    }
    .progress-bar {
        background-color: #e4e4e7;
        height: 8px;
        border-radius: 999px;
        margin: 20px 0;
        overflow: hidden;
    }
    .progress {
        background-color: #1964a7;
        height: 100%;
        border-radius: 999px;
        width: 0;
        transition: width 0.3s ease;
    }
    .question {
        margin-bottom: 32px;
    }
    .options {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .options label {
        display: flex;
        align-items: center;
        padding: 10px;
        background-color: #f7f7f7;
        border: 1px solid #e4e4e7;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        position: relative;
            font-size: 22px;
    font-weight: 500;
    }
    .options label:hover {
        border-color: #1964a7;
        background-color: #E6F0F8;
    }
    .options label.selected {
        background-color: #D9ECF9;
        border-color: #1964a7;
    }
    input[type="radio"], 
    input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        accent-color: #1964a7;
    }
    button {
        background-color: #1964a7;
        color: white;
        border: none;
        padding: 16px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 30px;
    font-weight: 800;
        width: 100%;
        transition: background-color 0.2s ease;
    }
    button:hover {
        background-color: #2380d1;
    }
    button:disabled {
        background-color: #e4e4e7;
        cursor: not-allowed;
    }
    p {
        color: #666;
        margin: 8px 0 16px 0;
        font-style: italic;
    }
    #discount-animation {
        text-align: center;
        padding: 40px 0;
    }
    .discount-circle {
        width: 200px;
        height: 200px;
        margin: 0 auto 24px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .discount-circle svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
    }
    .discount-circle circle {
        fill: none;
        stroke-width: 8;
        stroke-linecap: round;
        transition: stroke-dashoffset 0.3s ease;
    }
    .discount-circle .background {
        stroke: #e4e4e7;
    }
    .discount-circle .progress {
        stroke: #1964a7;
    }
    .discount-percentage {
        font-size: 48px;
        font-weight: bold;
        color: #1964a7;
    }
    .package-info {
        display: flex;
        flex-direction: column;
        margin-left: 32px;
    }
    .package-title {
        font-size: 18px;
        font-weight: 500;
        margin: 0;
    }
    .package-subtitle {
        color: #666;
        margin: 4px 0;
    }
    .package-price {
        font-weight: 500;
    }
        .shipping-price {
            font-size:14px;
            font-weight: 400;
        }
    .package-label {
        position: absolute;
        top: -10px;
        right: 10px;
        background-color: #333;
        color: white;
        padding: 4px 8px;
        font-size: 12px;
        border-radius: 4px;
        font-weight: 500;
    }
    /* Warning message styles */
    .warning-message {
        color: #e11d48;
        background-color: #ffe4e6;
        border: 1px solid #fecdd3;
        padding: 10px 16px;
        border-radius: 8px;
        margin-top: 16px;
        font-size: 14px;
        display: none;
        align-items: center;
    }
    .warning-message:before {
        content: "⚠️";
        margin-right: 8px;
    }
    
    /* Responsive Adjustments - Updated */
@media (max-width: 768px) {
   .header-container {
        flex-direction: row;
        justify-content: space-between;
        width: 100%; /* Full width on mobile */
        padding: 0 15px; /* Add horizontal padding for spacing */
        box-sizing: border-box; /* Include padding in width calculation */
    }
    
   .quiz-container {
        width: calc(100% - 30px); /* Slightly narrower margins on mobile */
        padding: 24px; /* Slightly less padding on mobile */
    } 
    .logo {
        margin-bottom: 0;
    }
    
    .logo img {
        max-height: 32px; /* Slightly reduce logo size on mobile */
    }
    
    .phone-section {
        padding-right: 0;
        align-items: flex-end;
    }
    
    .phone-text {
        font-size: 12px; /* Reduce text size on mobile */
    }
    
    .phone-number a {
        font-size: 16px; /* Reduce phone number size on mobile */
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .header-container {
        width: 95%; /* Increase width slightly on very small screens */
    }
    
    .logo img {
        max-height: 28px; /* Further reduce logo size */
    }
    
    .phone-text {
        font-size: 11px; /* Further reduce text size */
    }
    
    .phone-number a {
        font-size: 15px; /* Further reduce phone number size */
    }
    
    .back-arrow {
 
        margin-right: 5px;
    }
    h1 {
        font-size: 28px;
    
    }
}
        
        @media (max-width: 450px) {
    .logo img {
        max-height: 20px;
    }
}
        
        @media (max-width: 390px) {
    .logo img {
        max-height: 15px;
    }
            h1 {
        font-size: 24px;
    
    }
}