.page-container {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8d9c9;
     
    h1,
    h2,
    h4 {
        font-family: 'Playfair Display', serif;
        font-weight: bold;
    }
    
    h1 {
        color: #c28956;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    h2 {
        color: #9b705a;
        font-size: 1.8rem;
        margin-top: 25px;
        position: relative;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
     
    h2::before {
        content: '';
        width: 50px;
        height: 4px;
        background-color: #c28956;
        position: absolute;
        bottom: -8px;
        left: 0;
        border-radius: 2px;
    }
    
    .non::before {
    
        width: 0px;
        height: 0px;
    }
    
    h4 {
        color: #6d4c41;
        font-size: 1.4rem;
        margin-top: 20px;
        border-bottom: 2px solid #e8d9c9;
        padding-bottom: 5px;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    p {
        font-size: 1.1rem;
        color: #5a4a42;
        line-height: 1.8;
        margin-bottom: 18px;
        text-align: justify;
    }
    
    .text-primary {
        color: #00750a !important;
    }
    
    .text-secondary {
        color: red !important;
    }
    
    .text-dark {
        color: #6d4c41;
    }
    
    .card {
        background-color: #ffffff;
        border: none;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }
    
    .card-body {
        padding: 25px;
        background: linear-gradient(to right, #fff6ec, #ffebd9);
        border-radius: 8px;
        border: 1px solid #e8d9c9;
    }
    
    .card:hover {
        transform: translateY(-5px);
    }
    
    ul,
    ol {
        margin-left: 25px;
        margin-bottom: 20px;
    }
    
    ul li,
    ol li {
        color: #5a4a42;
        font-size: 1.05rem;
        line-height: 1.7;
        padding-left: 5px;
        position: relative;
    }
    
    ul li::before {
        content: '•';
        color: #c28956;
        position: absolute;
        left: -15px;
    }
    
    a {
        color: #c28956;
        text-decoration: none;
        font-weight: bold;
    }
    
    a:hover {
        color: #9b705a;
        text-decoration: underline;
    }
    
    button,
    .btn {
        background: linear-gradient(to right, #c28956, #9b705a);
        color: #ffffff;
        padding: 10px 25px;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
    }
    
    button:hover,
    .btn:hover {
        background: linear-gradient(to right, #9b705a, #c28956);
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .container {
            padding: 15px;
        }
    
        h1 {
            font-size: 1.8rem;
        }
    
        h2 {
            font-size: 1.5rem;
        }
    
        h4 {
            font-size: 1.2rem;
        }
    
        button,
        .btn {
            padding: 8px 20px;
            font-size: 0.9rem;
        }
    }
    
    .nonn {
        margin-top: 1rem;
    }
     
    .terms-section {
        padding: 25px;
        background: linear-gradient(to right, #fff6ec, #ffebd9);
        border-radius: 8px;
        border: 1px solid #e8d9c9;
        margin-bottom: 1rem;
    } 
} 