         .policy-container {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 100%;
            max-width: 800px;
        }

        h1{
                margin-bottom: 20px;
        }
        

        
        .policies {
            display: flex;
            flex-wrap: wrap;
        }
        
        .policy-section {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .policy-section:hover {
            background: #f9f9f9;
        }
        
        .policy-section:first-child {
            border-right: 1px solid #eee;
        }
        
        .policy-title {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .policy-icon {
            width: 40px;
            height: 40px;
            margin-right: 15px;
            background: #eef5ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .policy-link {
            display: block;
            background: #4a6ee0;
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 15px;
            position: relative;
            padding-left: 60px;
        }
        
        .policy-link:hover {
            background: #3a5dc9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(58, 93, 201, 0.2);
        }
        
        .policy-link:before {
            content: "";
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background: white;
            mask-size: cover;
            -webkit-mask-size: cover;
        }
        
        .policy-link.pdf:before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M9,13V19H7V13H9M15,15V19H17V15H15M11,11V19H13V11H11Z' fill='white'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M9,13V19H7V13H9M15,15V19H17V15H15M11,11V19H13V11H11Z' fill='white'/%3E%3C/svg%3E");
        }
        
        .policy-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .policies {
                flex-direction: column;
            }
            
            .policy-section:first-child {
                border-right: none;
                border-bottom: 1px solid #eee;
            }
        }