.buy-one-wrapper {
        position: relative;
        margin: 20px 0;
    }
    
    .buy-one-container {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .buy-one-content {
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .buy-one-header {
        width: 80%;
        padding-right: 30px;
        box-sizing: border-box;
    }
    
    .buy-one-title {
        font-size: 30px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
        margin-top: 0;
    }
    
    .buy-one-subtitle {
        font-size: 18px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .buy-one-discount {
        position: absolute;
        top: -25px;
        right: -30px;
        background-color: #ff0000;
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 30px;
        font-weight: bold;
        z-index: 10;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    
    .buy-one-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #45a049;
        color: white !important;
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-left: 75px;
		margin-top: 30px;
        flex-shrink: 0;
    }
    
    .buy-one-button:hover {
        background-color: #1aabf4;
    }
    
    .buy-one-icon {
        margin-right: 8px;
    }

    @media (max-width: 768px) {
        .buy-one-content {
            flex-direction: column;
        }
        
        .buy-one-header {
            width: 100%;
            padding-right: 0;
            margin-bottom: 20px;
        }
        
        .buy-one-title {
            font-size: 28px;
        }
        
        .buy-one-subtitle {
            font-size: 16px;
        }
        
        .buy-one-button {
            margin-left: 0;
            width: 100%;
        }
        
        .buy-one-discount {
            font-size: 16px;
            padding: 6px 15px;
        }
    }

    @media (max-width: 480px) {
        .buy-one-container {
            padding: 20px;
        }
        
        .buy-one-title {
            font-size: 24px;
        }
        
        .buy-one-button {
            font-size: 16px;
            padding: 12px 25px;
        }
    }